diff options
| author | untodesu <kirill@untode.su> | 2025-09-11 13:48:31 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-09-11 13:48:31 +0500 |
| commit | aaed751bf4430bf4b9b30cef532b8753b9f639ce (patch) | |
| tree | 16bc751c272ba27ad53ec48dbdd3a6d9e6a8d4c2 /core/config/boolean.hh | |
| parent | 96bd73ae020ecca1f94698744c77498a89ad19f7 (diff) | |
| download | voxelius-aaed751bf4430bf4b9b30cef532b8753b9f639ce.tar.bz2 voxelius-aaed751bf4430bf4b9b30cef532b8753b9f639ce.zip | |
Replace most of C strings with string_view
Diffstat (limited to 'core/config/boolean.hh')
| -rw-r--r-- | core/config/boolean.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/config/boolean.hh b/core/config/boolean.hh index 5285676..2e9855f 100644 --- a/core/config/boolean.hh +++ b/core/config/boolean.hh @@ -11,8 +11,8 @@ public: explicit Boolean(bool default_value = false); virtual ~Boolean(void) = default; - virtual void set(const char* value) override; - virtual const char* get(void) const override; + virtual void set(std::string_view value) override; + virtual std::string_view get(void) const override; bool get_value(void) const; void set_value(bool value); @@ -21,8 +21,8 @@ private: bool m_value; public: - static const char* to_string(bool value); - static bool from_string(const char* value); + static std::string_view to_string(bool value); + static bool from_string(std::string_view value); }; } // namespace config |
