From c34bd74d695f7a7e4e5582cb4ccfcad028aafe7d Mon Sep 17 00:00:00 2001 From: Krystian Stasiowski Date: Sat, 1 Feb 2020 20:34:33 -0500 Subject: [PATCH] Adjust tests --- test/constexpr_tests.hpp | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/test/constexpr_tests.hpp b/test/constexpr_tests.hpp index b9d9388..0b482c9 100644 --- a/test/constexpr_tests.hpp +++ b/test/constexpr_tests.hpp @@ -1,3 +1,12 @@ +// +// Copyright (c) 2019-2020 Krystian Stasiowski (sdkrystian at gmail dot com) +// +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Official repository: https://github.com/boostorg/static_string +// + #include #include @@ -283,18 +292,18 @@ testConstantEvaluation() } // reverse iterators - { - auto j = a.rbegin(); - } - { - auto j = a.crbegin(); - } - { - auto j = a.rend(); - } - { - auto j = a.crend(); - } + //{ + // auto j = a.rbegin(); + //} + //{ + // auto j = a.crbegin(); + //} + //{ + // auto j = a.rend(); + //} + //{ + // auto j = a.crend(); + //} // capacity and size auto j = cstatic_string().size() +