Files
DarkRP2D/external/entityx-1.1.2/entityx/help/Pool.cc
2018-05-10 23:36:35 +02:00

22 lines
421 B
C++

/*
* 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