aboutsummaryrefslogtreecommitdiffstats
path: root/include/jau/darray.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/jau/darray.hpp')
-rw-r--r--include/jau/darray.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jau/darray.hpp b/include/jau/darray.hpp
index c0d993a..dd1e057 100644
--- a/include/jau/darray.hpp
+++ b/include/jau/darray.hpp
@@ -1122,7 +1122,7 @@ namespace jau {
return count;
}
- constexpr_cxx20 std::string toString() const noexcept {
+ constexpr_func_cxx20 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) {
@@ -1133,7 +1133,7 @@ namespace jau {
return res;
}
- constexpr_cxx20 std::string get_info() const noexcept {
+ constexpr_func_cxx20 std::string get_info() const noexcept {
difference_type cap_ = (storage_end_-begin_);
difference_type size_ = (end_-begin_);
std::string res("darray[this "+jau::aptrHexString(this)+