From 97ae1a8f23074fea3784a008921c5d9fc3c1e8fb Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Wed, 5 Aug 2026 11:11:40 +0200 Subject: clang22 issues fixed --- modules/codec/c++/data.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/codec/c++/data.hpp b/modules/codec/c++/data.hpp index 4289ed8..c43402e 100644 --- a/modules/codec/c++/data.hpp +++ b/modules/codec/c++/data.hpp @@ -522,7 +522,7 @@ public: * Default constructor. */ data() = default; - data(data init){ + data(const data& init)requires(not std::is_same_v){ if constexpr ( 0u < sizeof...(T) ){ init_helper<0u>::apply(value_, std::move(init)); } -- cgit v1.2.3