diff options
author | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-11-08 18:00:17 +0100 |
---|---|---|
committer | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-11-08 18:00:17 +0100 |
commit | 98f6d9551beefbecd5d93a31ec8b553fee3e1f4c (patch) | |
tree | 03460ace5dcbe4987966cf3c06c244106a898ce7 /modules/codec | |
parent | 23b7ffd8c6fde68170e8f6104d8bf40c6ef8da72 (diff) |
Fixed wrong Schema Type being provided
Diffstat (limited to 'modules/codec')
-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 8e29d3c..26f3afd 100644 --- a/modules/codec/c++/data.hpp +++ b/modules/codec/c++/data.hpp @@ -608,7 +608,7 @@ public: return make_void(); } - error_or<ptr<data<Value,encode::Native>>> find(ref<data<Value,encode::Native>> key){ + error_or<ptr<data<Value,encode::Native>>> find(ref<data<Key,encode::Native>> key){ auto find = vals_.find(key()); if(find == vals_.end()){ return make_error<err::not_found>(); |