summaryrefslogtreecommitdiffstats
path: root/game/server/sessions.hh
diff options
context:
space:
mode:
Diffstat (limited to 'game/server/sessions.hh')
-rw-r--r--game/server/sessions.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/server/sessions.hh b/game/server/sessions.hh
index ee5b22e..e9ce989 100644
--- a/game/server/sessions.hh
+++ b/game/server/sessions.hh
@@ -37,8 +37,8 @@ void shutdown(void);
namespace sessions
{
-Session* create(ENetPeer* peer, const char* client_username);
-Session* find(const char* client_username);
+Session* create(ENetPeer* peer, std::string_view client_username);
+Session* find(std::string_view client_username);
Session* find(std::uint16_t client_index);
Session* find(std::uint64_t client_identity);
Session* find(ENetPeer* peer);