summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-03 22:56:40 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-03 22:56:40 +0000
commit4d85db12ae1bc165e6be313de9aa0864d2b8f153 (patch)
tree7a5530cd88ff2899a5043a2d49f44aa7d6cd8661
parent98d5ac1394464f4d1a20c73b1ab2114449f3653a (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.h4
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