From 479c10b1934a3c65f9471660757ff04630419973 Mon Sep 17 00:00:00 2001 From: Krystian Stasiowski Date: Sun, 2 Feb 2020 23:26:47 -0500 Subject: [PATCH] Fix guard for constexpr tests --- test/constexpr_tests.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/constexpr_tests.hpp b/test/constexpr_tests.hpp index 51099df..39ab8d5 100644 --- a/test/constexpr_tests.hpp +++ b/test/constexpr_tests.hpp @@ -11,7 +11,7 @@ #include // char_traits aren't constexpr until c++17 -#ifdef BOOST_STATIC_STRING_STANDARD_VERSION <= 201703L +#ifdef BOOST_STATIC_STRING_STANDARD_VERSION <= 201703L && BOOST_STATIC_STRING_STANDARD_VERSION >= 201402L struct cxper_char_traits { using char_type = char;