diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-26 15:27:01 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-26 15:34:17 +0000 |
commit | c6cb4ba159a8916243d7ac5a5c4e8d13942baf99 (patch) | |
tree | 5183b6cb982dadb2b91987ff7b69486ea8d811df /include/modules/xmlrpc.h | |
parent | e341cac8d6565044f7390852afb40c5e388121df (diff) |
Fix some coding style issues.
Diffstat (limited to 'include/modules/xmlrpc.h')
-rw-r--r-- | include/modules/xmlrpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules/xmlrpc.h b/include/modules/xmlrpc.h index 698a8e6ce..115fe4ad4 100644 --- a/include/modules/xmlrpc.h +++ b/include/modules/xmlrpc.h @@ -18,7 +18,7 @@ public: Anope::string name; Anope::string id; std::deque<Anope::string> data; - HTTPReply& r; + HTTPReply &r; XMLRPCRequest(HTTPReply &_r) : r(_r) { } inline void reply(const Anope::string &dname, const Anope::string &ddata) { this->replies.emplace(dname, ddata); } |