summaryrefslogtreecommitdiffstats
path: root/src/AllocationPool.h
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-06-14 19:43:36 +0200
committerTycho <work.tycho+git@gmail.com>2014-06-14 19:43:36 +0200
commit0310a50192fcbd4a9e5ec03c98a0d7f33457df54 (patch)
tree2eadcb6d26691e98215391330b4c23c3ce3f798a /src/AllocationPool.h
parentfixed compile (diff)
downloadcuberite-0310a50192fcbd4a9e5ec03c98a0d7f33457df54.tar
cuberite-0310a50192fcbd4a9e5ec03c98a0d7f33457df54.tar.gz
cuberite-0310a50192fcbd4a9e5ec03c98a0d7f33457df54.tar.bz2
cuberite-0310a50192fcbd4a9e5ec03c98a0d7f33457df54.tar.lz
cuberite-0310a50192fcbd4a9e5ec03c98a0d7f33457df54.tar.xz
cuberite-0310a50192fcbd4a9e5ec03c98a0d7f33457df54.tar.zst
cuberite-0310a50192fcbd4a9e5ec03c98a0d7f33457df54.zip
Diffstat (limited to '')
-rw-r--r--src/AllocationPool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AllocationPool.h b/src/AllocationPool.h
index f73b32601..9144c2eac 100644
--- a/src/AllocationPool.h
+++ b/src/AllocationPool.h
@@ -19,7 +19,7 @@ class cAllocationPool {
cAllocationPool(std::auto_ptr<cStarvationCallbacks> a_Callbacks) :
m_Callbacks(a_Callbacks)
{
- for(size_t i = 0; i < NumElementsInReserve; i++)
+ for (size_t i = 0; i < NumElementsInReserve; i++)
{
void * space = malloc(sizeof(T));
if (space == NULL)