diff options
| author | 2022-08-27 14:48:19 +0100 | |
|---|---|---|
| committer | 2022-08-27 14:48:19 +0100 | |
| commit | 28a7f1f0c8163fe202ad0b6c228ff48dc0c13934 (patch) | |
| tree | 88b41aee139056b3cac1079b0e49ec784c1e8786 /src/clientprotocol.cpp | |
| parent | Replace GetUserCounter() with GetUsers().size(). (diff) | |
| parent | Release v3.14.0. (diff) | |
Merge branch 'insp3' into master.
Diffstat (limited to 'src/clientprotocol.cpp')
| -rw-r--r-- | src/clientprotocol.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/clientprotocol.cpp b/src/clientprotocol.cpp index 00f2cbc4c..91317640c 100644 --- a/src/clientprotocol.cpp +++ b/src/clientprotocol.cpp @@ -1,7 +1,7 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2018-2020 Sadie Powell <sadie@witchery.services> + * Copyright (C) 2018-2020, 2022 Sadie Powell <sadie@witchery.services> * Copyright (C) 2018 Attila Molnar <attilamolnar@hush.com> * * This file is part of InspIRCd. InspIRCd is free software: you can @@ -20,8 +20,8 @@ #include "inspircd.h" -ClientProtocol::Serializer::Serializer(Module* mod, const char* Name) - : DataProvider(mod, std::string("serializer/") + Name) +ClientProtocol::Serializer::Serializer(Module* mod, const std::string& Name) + : DataProvider(mod, "serializer/" + Name) , evprov(mod) { } |
