summaryrefslogtreecommitdiff
path: root/include/service.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2014-02-16 18:27:46 -0500
committerAdam <Adam@anope.org>2014-02-16 18:28:39 -0500
commit959fee59377edc4eaf285d8e72d3c2c41e9fe3ab (patch)
treed1295deffb7bc89380f5c6556255262705de8186 /include/service.h
parent3854a5570f832265535bb43e8e93cdae23fe0514 (diff)
Fix Windows build
Diffstat (limited to 'include/service.h')
-rw-r--r--include/service.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/service.h b/include/service.h
index 5245ab1c7..db0b2af4b 100644
--- a/include/service.h
+++ b/include/service.h
@@ -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);
}