From d59feba1385b98a3f8e85ff4e701b998e01270c9 Mon Sep 17 00:00:00 2001 From: Krystian Stasiowski Date: Mon, 3 Feb 2020 10:25:37 -0500 Subject: [PATCH] Fix C++14 tests --- test/constexpr_tests.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/constexpr_tests.hpp b/test/constexpr_tests.hpp index 5f4c619..cf0d88d 100644 --- a/test/constexpr_tests.hpp +++ b/test/constexpr_tests.hpp @@ -559,6 +559,7 @@ testConstantEvaluation() a.replace(a.begin(), a.end(), {'a'}); #ifdef BOOST_STATIC_STRING_IS_CONST_EVAL + a.clear(); a.replace(a.begin(), a.end(), "a"); a.replace(a.begin(), a.end(), "a", 1); #endif