diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-03 22:56:40 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-03 22:56:40 +0000 |
commit | 4d85db12ae1bc165e6be313de9aa0864d2b8f153 (patch) | |
tree | 7a5530cd88ff2899a5043a2d49f44aa7d6cd8661 | |
parent | 98d5ac1394464f4d1a20c73b1ab2114449f3653a (diff) |
You'll hit yourself w00t. You left the ; off both the class decls :p
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8486 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/bancache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bancache.h b/include/bancache.h index 1edbbe5a1..2c58c7245 100644 --- a/include/bancache.h +++ b/include/bancache.h @@ -25,7 +25,7 @@ class CoreExport BanCacheHit : public classbase const bool Banned; const time_t Duration; const time_t Creation; -} +}; // must be defined after class BanCacheHit. typedef nspace::hash_map<std::string, BanCacheHit *, nspace::hash<std::string> > BanCacheHash; @@ -44,6 +44,6 @@ class CoreExport BanCacheManager : public classbase this->ServerInstance = Instance; this->BanHash = new BanCacheHash(); } -} +}; #endif |