]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/cull_list.h
Fix CullList to not use O(n^2) version of vector clear
[user/henk/code/inspircd.git] / include / cull_list.h
index 3a78bf96d2e8fc260581508dbfa14a11d04c4759..2a0b895f2c8e0964d30a1a9d56ae6c0620f43c44 100644 (file)
@@ -66,9 +66,8 @@ class CoreExport CullList : public classbase
         * iterating the user list and comparing each one,
         * especially if there are multiple comparisons
         * to be done, or recursion.
-        * @returns The number of users removed from IRC.
         */
-       int Apply();
+       void Apply();
 };
 
 #endif