1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 13:13:14 +02:00

Fix a few warnings that only showed up with gcc 3.4.6 here (sadly, there is one on every file about anonymous variadic macros that I can't get rid of).

This commit is contained in:
Naram Qashat
2011-10-27 18:20:34 -04:00
parent d9333e02fa
commit 655c1cc1f7
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -70,8 +70,9 @@ extern void RegisterTypes();
class SerializableBase
{
public:
typedef std::map<Anope::string, Serialize::stringstream> serialized_data;
typedef std::map<Anope::string, Serialize::stringstream> serialized_data;
virtual ~SerializableBase() { }
virtual Anope::string serialize_name() = 0;
virtual serialized_data serialize() = 0;
virtual void alloc(serialized_data &) = 0;
+1
View File
@@ -105,6 +105,7 @@ class LDAPInterface
Module *owner;
LDAPInterface(Module *m) : owner(m) { }
virtual ~LDAPInterface() { }
virtual void OnResult(const LDAPResult &r) { }