From 728fe910b288321760042d5aa520eedeabb3af96 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Sun, 21 Jun 2026 19:23:31 +0200 Subject: Added const stl_view --- modules/codec/c++/data.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'modules/codec/c++/data.hpp') diff --git a/modules/codec/c++/data.hpp b/modules/codec/c++/data.hpp index 79a6ab8..4dd1fd3 100644 --- a/modules/codec/c++/data.hpp +++ b/modules/codec/c++/data.hpp @@ -921,6 +921,10 @@ public: std::string_view stl_view() { return value_; } + + const std::string_view stl_view() const { + return value_; + } std::string stl_string() const { return value_; -- cgit v1.2.3