diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-05-04 17:57:20 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-05-04 17:57:20 +0200 |
| commit | dfc9dcbb6b592d5639f5e9232bd022b85090a5b1 (patch) | |
| tree | 68fa4790e5d64b1161554b2323b21f5daca6f221 /modules/codec | |
| parent | ecc512ba388a04c84cef639cead2273934b485db (diff) | |
| download | forstio-forstio-dfc9dcbb6b592d5639f5e9232bd022b85090a5b1.tar.gz | |
Testing forwarding simplificationsdev
Diffstat (limited to 'modules/codec')
| -rw-r--r-- | modules/codec/c++/data.hpp | 8 |
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); |
