diff options
| author | 2022-08-24 17:56:41 +0100 | |
|---|---|---|
| committer | 2022-08-24 17:56:41 +0100 | |
| commit | 65d50f04c00c8ec2b7a8744c9f0c7bc32841d8f3 (patch) | |
| tree | efaeab13042484aef51d98ec271b2c15d48600bc /include | |
| parent | Fix 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.h | 2 |
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. |
