diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-05 10:56:55 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-05 10:56:55 +0200 |
| commit | e46eef0dd8c845d77570e9194a83b09a4689ccfa (patch) | |
| tree | ed96284b10dfd92ae36d01f4740dda92761958de /modules/codec/c++ | |
| parent | d2f1e85c2c8646156117e2bd686ffea5f31cdc86 (diff) | |
| download | forstio-forstio-e46eef0dd8c845d77570e9194a83b09a4689ccfa.tar.gz | |
Updating clang and fixing copy
Diffstat (limited to 'modules/codec/c++')
| -rw-r--r-- | modules/codec/c++/data.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/codec/c++/data.hpp b/modules/codec/c++/data.hpp index a750e1e..4289ed8 100644 --- a/modules/codec/c++/data.hpp +++ b/modules/codec/c++/data.hpp @@ -591,7 +591,7 @@ private: public: data() = default; - data(data<MetaSchema, encode::Native> init) requires (not std::is_same_v<MetaSchema,Schema>) { + data(const data<MetaSchema, encode::Native>& init) requires (not std::is_same_v<MetaSchema,Schema>) { if constexpr ( 0u < sizeof...(T) ){ init_helper<0u>::apply(value_, std::move(init)); } |
