summaryrefslogtreecommitdiff
path: root/include/usermanager.h
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2013-05-16 20:51:12 +0200
committerattilamolnar <attilamolnar@hush.com>2013-05-16 20:51:12 +0200
commitbb962f92ace6eb23c66c5fccee01f825c22363c3 (patch)
tree9a9fd3ca343fb685477c2c45668211236bb7ed1a /include/usermanager.h
parent0a8b0d317ed4adc43185c1b791bcf752115dc58e (diff)
Workaround for std::list::size() having linear complexity on some implementations
Diffstat (limited to 'include/usermanager.h')
-rw-r--r--include/usermanager.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/usermanager.h b/include/usermanager.h
index 3d7fe88fb..743db508a 100644
--- a/include/usermanager.h
+++ b/include/usermanager.h
@@ -63,7 +63,11 @@ class CoreExport UserManager
/** Number of unregistered users online right now.
* (Unregistered means before USER/NICK/dns)
*/
- int unregistered_count;
+ unsigned int unregistered_count;
+
+ /** Number of elements in local_users
+ */
+ unsigned int local_count;
/** Map of global ip addresses for clone counting
* XXX - this should be private, but m_clones depends on it currently.