summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-08-05 10:56:55 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-08-05 10:56:55 +0200
commite46eef0dd8c845d77570e9194a83b09a4689ccfa (patch)
treeed96284b10dfd92ae36d01f4740dda92761958de /modules
parentd2f1e85c2c8646156117e2bd686ffea5f31cdc86 (diff)
downloadforstio-forstio-e46eef0dd8c845d77570e9194a83b09a4689ccfa.tar.gz
Updating clang and fixing copy
Diffstat (limited to 'modules')
-rw-r--r--modules/codec/c++/data.hpp2
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));
}