summaryrefslogtreecommitdiff
path: root/modules/codec
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-06-21 19:23:31 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-06-21 19:23:31 +0200
commit728fe910b288321760042d5aa520eedeabb3af96 (patch)
treed5bcef7ac227b4838e4f0ab630155da1271ca891 /modules/codec
parent16144bdcadb119237775d368fa550afab53a9c92 (diff)
downloadforstio-forstio-728fe910b288321760042d5aa520eedeabb3af96.tar.gz
Added const stl_viewHEADmasterdev
Diffstat (limited to 'modules/codec')
-rw-r--r--modules/codec/c++/data.hpp4
1 files changed, 4 insertions, 0 deletions
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_;