From aaed751bf4430bf4b9b30cef532b8753b9f639ce Mon Sep 17 00:00:00 2001 From: untodesu Date: Thu, 11 Sep 2025 13:48:31 +0500 Subject: Replace most of C strings with string_view --- game/server/world/overworld.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'game/server/world/overworld.hh') diff --git a/game/server/world/overworld.hh b/game/server/world/overworld.hh index 4141105..3da0401 100644 --- a/game/server/world/overworld.hh +++ b/game/server/world/overworld.hh @@ -25,7 +25,7 @@ namespace world { class Overworld final : public Dimension { public: - explicit Overworld(const char* name); + explicit Overworld(std::string_view name); virtual ~Overworld(void) = default; public: -- cgit