diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-02-29 13:20:44 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-02-29 13:20:44 +0100 |
commit | 617538aa3278a4ca03b017d92047ba6d4027f30b (patch) | |
tree | 7303234aee9e8cc91fabfce4238297565f66960a /modules | |
parent | 4b17c930bea397964337b5a901b0a9a9c0177d76 (diff) |
codec: Fixed constructor typo
Diffstat (limited to 'modules')
-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 b217a5a..ee3003e 100644 --- a/modules/codec/c++/data.hpp +++ b/modules/codec/c++/data.hpp @@ -196,7 +196,7 @@ class data<schema::Array<T,Dim>, encode::Native> { return s; } public: - data(), + data(): value_{} { for(auto& iter : dims_){ |