summaryrefslogtreecommitdiff
path: root/core/pool_allocator.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/pool_allocator.h')
-rw-r--r--core/pool_allocator.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/pool_allocator.h b/core/pool_allocator.h
index 1cc21afb21..cec95c7323 100644
--- a/core/pool_allocator.h
+++ b/core/pool_allocator.h
@@ -60,7 +60,6 @@ private:
};
struct Entry {
-
unsigned int pos = 0;
unsigned int len = 0;
unsigned int lock = 0;
@@ -99,7 +98,6 @@ private:
return p_entry.pos + aligned(p_entry.len);
}
inline int aligned(int p_size) const {
-
int rem = p_size % align;
if (rem)
p_size += align - rem;