diff options
Diffstat (limited to 'entityx/help/Pool.cc')
-rw-r--r-- | entityx/help/Pool.cc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/entityx/help/Pool.cc b/entityx/help/Pool.cc new file mode 100644 index 0000000..c710887 --- /dev/null +++ b/entityx/help/Pool.cc @@ -0,0 +1,21 @@ +/* + * Copyright (C) 2012-2014 Alec Thomas <alec@swapoff.org> + * All rights reserved. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. + * + * Author: Alec Thomas <alec@swapoff.org> + */ + +#include "entityx/help/Pool.h" + +namespace entityx { + +BasePool::~BasePool() { + for (char *ptr : blocks_) { + delete[] ptr; + } +} + +} // namespace entityx |