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 /game/client/config/keybind.hh | |
| parent | 96bd73ae020ecca1f94698744c77498a89ad19f7 (diff) | |
| download | voxelius-aaed751bf4430bf4b9b30cef532b8753b9f639ce.tar.bz2 voxelius-aaed751bf4430bf4b9b30cef532b8753b9f639ce.zip | |
Replace most of C strings with string_view
Diffstat (limited to 'game/client/config/keybind.hh')
| -rw-r--r-- | game/client/config/keybind.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/game/client/config/keybind.hh b/game/client/config/keybind.hh index abfb97a..0005fe4 100644 --- a/game/client/config/keybind.hh +++ b/game/client/config/keybind.hh @@ -12,8 +12,8 @@ public: explicit KeyBind(int default_value); virtual ~KeyBind(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; void set_key(int keycode); int get_key(void) const; @@ -21,7 +21,7 @@ public: bool equals(int keycode) const; private: - const char* m_name; + std::string_view m_name; int m_glfw_keycode; }; } // namespace config |
