Codechange: replace char * with std::string_view

This commit is contained in:
Rubidium
2025-04-27 21:10:02 +02:00
committed by rubidium42
parent c6ea0ce961
commit 9116f96e2e
6 changed files with 16 additions and 18 deletions

View File

@@ -110,7 +110,7 @@ public:
* Get the name used by the listener.
* @return the name to show in debug logs and the like.
*/
static const char *GetName()
static std::string_view GetName()
{
return "server";
}