summaryrefslogtreecommitdiff
path: root/modules/codec/c++/data.hpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-05-04 17:57:20 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-05-04 17:57:20 +0200
commitdfc9dcbb6b592d5639f5e9232bd022b85090a5b1 (patch)
tree68fa4790e5d64b1161554b2323b21f5daca6f221 /modules/codec/c++/data.hpp
parentecc512ba388a04c84cef639cead2273934b485db (diff)
downloadforstio-forstio-dfc9dcbb6b592d5639f5e9232bd022b85090a5b1.tar.gz
Testing forwarding simplificationsdev
Diffstat (limited to 'modules/codec/c++/data.hpp')
-rw-r--r--modules/codec/c++/data.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/codec/c++/data.hpp b/modules/codec/c++/data.hpp
index 217a53f..b9924c7 100644
--- a/modules/codec/c++/data.hpp
+++ b/modules/codec/c++/data.hpp
@@ -326,6 +326,14 @@ public:
{
}
+ /*
+ template<typename... Args>
+ requires (sizeof...(Args) == ct_multiply<uint64_t, D...>::value) &&
+ (std::constructible_from<data<T, encode::Native>, Args> && ...)
+ constexpr data(Args&&... args):
+ value_{ { std::forward<Args>(args)... } } {}
+ */
+
SAW_DEFAULT_COPY(data);
SAW_DEFAULT_MOVE(data);