blob: c710887265722984c1dc73d4eaebd218f1d732ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|