X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcull_list.h;h=2b3ed13915435fa25d9f18a0c44c4760906827b7;hb=d1ddbd62f91d4b9453447b5d25f5e41e807b0010;hp=8c38276429c15490be501f93093754528848acf1;hpb=db7cc57f444a82df65f47b4f7058560e645e35cf;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/cull_list.h b/include/cull_list.h index 8c3827642..2b3ed1391 100644 --- a/include/cull_list.h +++ b/include/cull_list.h @@ -19,14 +19,11 @@ * 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 list; public: - CullList() {} - /** Adds an item to the cull list */ void AddItem(classbase* item) { list.push_back(item); }