aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-08-24 17:56:41 +0100
committerGravatar Sadie Powell2022-08-24 17:56:41 +0100
commit65d50f04c00c8ec2b7a8744c9f0c7bc32841d8f3 (patch)
treeefaeab13042484aef51d98ec271b2c15d48600bc /include
parentFix the last modified dates of the man pages. (diff)
Use std::string in the Serializer constructor.
Diffstat (limited to 'include')
-rw-r--r--include/clientprotocol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clientprotocol.h b/include/clientprotocol.h
index decb2fcf4..8a385de42 100644
--- a/include/clientprotocol.h
+++ b/include/clientprotocol.h
@@ -695,7 +695,7 @@ class CoreExport ClientProtocol::Serializer : public DataProvider
* @param mod Module owning the serializer.
* @param Name Name of the serializer, e.g. "rfc".
*/
- Serializer(Module* mod, const char* Name);
+ Serializer(Module* mod, const std::string& Name);
/** Handle a tag in a message being parsed. Call this method for each parsed tag.
* @param user User sending the tag.