Mark mutex as mutable in BanList to fix building issues
authorclinton <clinton@unknownlamer.org>
Sun, 22 Feb 2009 20:11:15 +0000 (20:11 +0000)
committerclinton <clinton@unknownlamer.org>
Sun, 22 Feb 2009 20:11:15 +0000 (20:11 +0000)
source/BanList.H

index 0bdb878..c28504c 100644 (file)
@@ -40,7 +40,7 @@ public:
 
 private:
   List storage;
-  BotMutex ban_mutex;
+  mutable BotMutex ban_mutex;
 
   iterator find (const Mask&);