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/shared/splash.hh | |
| parent | 96bd73ae020ecca1f94698744c77498a89ad19f7 (diff) | |
| download | voxelius-aaed751bf4430bf4b9b30cef532b8753b9f639ce.tar.bz2 voxelius-aaed751bf4430bf4b9b30cef532b8753b9f639ce.zip | |
Replace most of C strings with string_view
Diffstat (limited to 'game/shared/splash.hh')
| -rw-r--r-- | game/shared/splash.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/shared/splash.hh b/game/shared/splash.hh index f494a5b..2857621 100644 --- a/game/shared/splash.hh +++ b/game/shared/splash.hh @@ -6,7 +6,7 @@ namespace splash { void init_client(void); void init_server(void); -const char* get(void); +std::string_view get(void); } // namespace splash #endif // SHARED_SPLASH_HH |
