diff options
author | Adam <Adam@anope.org> | 2012-12-12 00:48:46 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-12-12 00:49:16 -0500 |
commit | dfff54425b5995f0f4267abbaab7cb420cf18642 (patch) | |
tree | d7b11f3c2e500f2e626a86ec862c16c60b8aa13f /include/extensible.h | |
parent | 0edd26467e6be11fe4ce3785f05bd065d810798a (diff) |
Fixed webpanel fail on nondebug builds
Diffstat (limited to 'include/extensible.h')
-rw-r--r-- | include/extensible.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/extensible.h b/include/extensible.h index 493dc20cf..bd7c8c76d 100644 --- a/include/extensible.h +++ b/include/extensible.h @@ -107,7 +107,7 @@ class CoreExport Extensible { extensible_map::const_iterator it = this->extension_items.find(key); if (it != this->extension_items.end()) - return anope_dynamic_reinterpret_cast<T>(it->second); + return anope_dynamic_static_cast<T>(it->second); return NULL; } |