Fix guards

This commit is contained in:
Krystian Stasiowski
2020-02-02 23:59:51 -05:00
parent 479c10b193
commit 6dcda053a3

View File

@ -10,8 +10,8 @@
#include <string> #include <string>
#include <boost/static_string/static_string.hpp> #include <boost/static_string/static_string.hpp>
// char_traits aren't constexpr until c++17 // char_traits aren't fully constexpr until c++20
#ifdef BOOST_STATIC_STRING_STANDARD_VERSION <= 201703L && BOOST_STATIC_STRING_STANDARD_VERSION >= 201402L #if BOOST_STATIC_STRING_STANDARD_VERSION <= 201703L && BOOST_STATIC_STRING_STANDARD_VERSION >= 201402L
struct cxper_char_traits struct cxper_char_traits
{ {
using char_type = char; using char_type = char;