diff options
Diffstat (limited to 'src/Maid.cpp')
-rw-r--r-- | src/Maid.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Maid.cpp b/src/Maid.cpp index 7403dbd..8bab395 100644 --- a/src/Maid.cpp +++ b/src/Maid.cpp @@ -21,13 +21,11 @@ namespace Raul { - Maid::Maid(size_t size) : _objects(size) { } - Maid::~Maid() { cleanup(); @@ -44,7 +42,6 @@ Maid::manage(SharedPtr<Raul::Deletable> ptr) _managed.push_back(new Raul::List<SharedPtr<Raul::Deletable> >::Node(ptr)); } - /** Free all the objects in the queue (passed by push()). */ void @@ -70,5 +67,4 @@ Maid::cleanup() } - } // namespace Raul |