From 5268424570e4e1b9fe2eb79e3e71b733a2d8be27 Mon Sep 17 00:00:00 2001 From: Claudius 'keldu' Holeksa Date: Mon, 19 Aug 2024 17:05:10 +0200 Subject: const qualifier was missing --- modules/codec/c++/data.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 - bool operator==(const data& rhs){ + bool operator==(const data& rhs) const { if(size() != rhs.size()){ return false; } -- cgit v1.2.3