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:
+2
-1
@@ -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;
|
||||
|
||||
@@ -105,6 +105,7 @@ class LDAPInterface
|
||||
Module *owner;
|
||||
|
||||
LDAPInterface(Module *m) : owner(m) { }
|
||||
virtual ~LDAPInterface() { }
|
||||
|
||||
virtual void OnResult(const LDAPResult &r) { }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user