]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/cull_list.h
Update m_cloaking to use free-form keys instead of weakening the hash IV
[user/henk/code/inspircd.git] / include / cull_list.h
index 8c38276429c15490be501f93093754528848acf1..2b3ed13915435fa25d9f18a0c44c4760906827b7 100644 (file)
  * avoid problems with references to deleted pointers if an object were deleted
  * during execution.
  */
-class CoreExport CullList : public classbase
+class CoreExport CullList
 {
- private:
        std::vector<classbase*> list;
 
  public:
-       CullList() {}
-
        /** Adds an item to the cull list
         */
        void AddItem(classbase* item) { list.push_back(item); }