diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-06-21 19:23:31 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-06-21 19:23:31 +0200 |
| commit | 728fe910b288321760042d5aa520eedeabb3af96 (patch) | |
| tree | d5bcef7ac227b4838e4f0ab630155da1271ca891 | |
| parent | 16144bdcadb119237775d368fa550afab53a9c92 (diff) | |
| download | forstio-forstio-master.tar.gz | |
| -rw-r--r-- | modules/codec/c++/data.hpp | 4 |
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_; |
