diff options
author | Adam <Adam@anope.org> | 2016-12-07 14:50:43 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-12-07 15:12:42 -0500 |
commit | e0773188a0d7ecb22f3513c6e080413bf82360b3 (patch) | |
tree | 643ac203d0e2cf81e298315d6d5ed57b3e187d78 /include | |
parent | a64ede8632e1e60aba9d04d2fea9d107e339b7f3 (diff) |
Remove unused varargs Socket:Write
Diffstat (limited to 'include')
-rw-r--r-- | include/sockets.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/sockets.h b/include/sockets.h index afc335c4f..ae4dda289 100644 --- a/include/sockets.h +++ b/include/sockets.h @@ -310,7 +310,6 @@ class CoreExport BufferedSocket : public virtual Socket protected: virtual void Write(const char *buffer, size_t l); public: - void Write(const char *message, ...); void Write(const Anope::string &message); /** Get the length of the read buffer @@ -359,7 +358,6 @@ class CoreExport BinarySocket : public virtual Socket * @param l The length of the data; if 0 then this function returns without doing anything */ virtual void Write(const char *buffer, size_t l); - void Write(const char *message, ...); void Write(const Anope::string &message); /** Called with data from the socket |