diff options
author | Adam <Adam@anope.org> | 2010-11-04 00:36:53 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-11-04 00:36:53 -0400 |
commit | cbd0f52eff232c1304658049ef9f2a64fc980a6c (patch) | |
tree | ade41601535941b0f106e30d1e1786abd1044eef /include/anope.h | |
parent | 4fb485895204f051ad37fa9cb716e37497fc9652 (diff) |
Made Base not virtual, prevents us from having to dynamic cast in the mode stacker on release builds
Diffstat (limited to 'include/anope.h')
-rw-r--r-- | include/anope.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/anope.h b/include/anope.h index 64efacc82..7b9e9ccd1 100644 --- a/include/anope.h +++ b/include/anope.h @@ -407,7 +407,7 @@ class CoreExport Base void DelReference(dynamic_reference_base *r); }; -class dynamic_reference_base : public virtual Base +class dynamic_reference_base : public Base { protected: bool invalid; |