summaryrefslogtreecommitdiff
path: root/modules/codec
diff options
context:
space:
mode:
authorClaudius 'keldu' Holeksa <mail@keldu.de>2024-08-19 17:05:10 +0200
committerClaudius 'keldu' Holeksa <mail@keldu.de>2024-08-19 17:05:10 +0200
commit5268424570e4e1b9fe2eb79e3e71b733a2d8be27 (patch)
treee76f4105f5d0baebbf157f922947f99042cb4953 /modules/codec
parentf89c70f6f84df4d2e9ed5e66bb881df266651e3e (diff)
const qualifier was missing
Diffstat (limited to 'modules/codec')
-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 371ae71..11d94e6 100644
--- a/modules/codec/c++/data.hpp
+++ b/modules/codec/c++/data.hpp
@@ -816,7 +816,7 @@ public:
}
template<typename Enc2>
- bool operator==(const data<schema::String, Enc2>& rhs){
+ bool operator==(const data<schema::String, Enc2>& rhs) const {
if(size() != rhs.size()){
return false;
}