1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 06:06:37 +02:00

Fix Windows build

This commit is contained in:
Adam
2014-02-16 18:27:46 -05:00
parent 3854a5570f
commit 959fee5937
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -148,7 +148,7 @@ class ServiceReference : public Reference<T>
* creates its own service type (that other modules must include the header file
* for), as the core is not compiled with it so there is no RTTI for it.
*/
this->ref = static_cast<T *>(Service::FindService(this->type, this->name));
this->ref = static_cast<T *>(::Service::FindService(this->type, this->name));
if (this->ref)
this->ref->AddReference(this);
}
+1 -1
View File
@@ -17,7 +17,7 @@ class DHAES : public Mechanism
BN_free(key);
sasl->Fail(sess);
return delete sess;
delete sess;
}
public:
+1 -1
View File
@@ -17,7 +17,7 @@ class DHBS : public Mechanism
BN_free(key);
sasl->Fail(sess);
return delete sess;
delete sess;
}
public: