From c451c8a0653cff4910b558ec9f7ea69726f86623 Mon Sep 17 00:00:00 2001 From: pfeatherstone <45853521+pfeatherstone@users.noreply.github.com> Date: Wed, 9 Aug 2023 17:29:44 +0100 Subject: [PATCH] Update expected.h --- dlib/expected.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlib/expected.h b/dlib/expected.h index 519e8e66f0..f152df9bb6 100644 --- a/dlib/expected.h +++ b/dlib/expected.h @@ -276,7 +276,7 @@ namespace dlib using check = std::enable_if_t< !is_expected_type::value && !is_unexpected_type::value && - std::is_constructible::value + std::is_constructible::value, bool >; };