summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-05 00:08:48 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-05 00:08:48 +0000
commitaa223a7d91019c5fe30acc86b69d73530c4ddcf5 (patch)
tree254407f8a546075c4105f076098ea148b77f6b3f /include
parent49329f48b7ba021204af09a9d60f727ba368b72f (diff)
Sped up introduction of nicks using vector::resize() rather than the craq++ loop (wtf was i thinking doing it that way?)
Removed 'client connecting notices dont show locally during burst' -- this is silly as it doesnt work remotely and is pretty much pointless git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3460 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/channels.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/channels.h b/include/channels.h
index 3947ffc2b..03c636d9b 100644
--- a/include/channels.h
+++ b/include/channels.h
@@ -270,7 +270,7 @@ class ucrec : public classbase
*/
chanrec *channel;
- ucrec() { /* stub */ }
+ ucrec() : uc_modes(0), channel(NULL) { /* stub */ }
virtual ~ucrec() { /* stub */ }
};