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/sockets.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/sockets.h')
-rw-r--r-- | include/sockets.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sockets.h b/include/sockets.h index 2c3ddb94d..2f1b3c8d7 100644 --- a/include/sockets.h +++ b/include/sockets.h @@ -150,7 +150,7 @@ class CoreExport SocketIO virtual void Destroy() { } }; -class CoreExport Socket : public Flags<SocketFlag, 2>, public virtual Base +class CoreExport Socket : public Flags<SocketFlag, 2> { protected: /* Socket FD */ |