diff options
Diffstat (limited to 'include/jau/cow_vector.hpp')
-rw-r--r-- | include/jau/cow_vector.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jau/cow_vector.hpp b/include/jau/cow_vector.hpp index b62b74d..8f1cf76 100644 --- a/include/jau/cow_vector.hpp +++ b/include/jau/cow_vector.hpp @@ -634,7 +634,7 @@ namespace jau { return count; } - constexpr_cxx20 std::string toString() const noexcept { + std::string toString() const noexcept { std::string res("{ " + std::to_string( size() ) + ": "); int i=0; jau::for_each_const(*this, [&res, &i](const value_type & e) { |