diff options
Diffstat (limited to 'modules/codec/c++/data.hpp')
| -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); |
