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/modes.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/modes.h')
-rw-r--r-- | include/modes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modes.h b/include/modes.h index 0611306e9..f771c6e91 100644 --- a/include/modes.h +++ b/include/modes.h @@ -74,7 +74,7 @@ enum ModeClass /** This class is the basis of all modes in Anope */ -class CoreExport Mode : public virtual Base +class CoreExport Mode : public Base { public: /* Class of mode this is */ |