Add missing include guard for dyn arena alloc header.

This commit is contained in:
Jonathan G Rennison
2017-03-29 19:46:30 +01:00
parent 2fb822d392
commit a3034891a1

View File

@@ -9,6 +9,9 @@
/** @file dyn_arena_alloc.hpp Dynamic chunk-size arena allocator. */
#ifndef DYN_ARENA_ALLOC_HPP
#define DYN_ARENA_ALLOC_HPP
#include <vector>
/**
@@ -95,3 +98,5 @@ class DynUniformArenaAllocator {
this->items_per_chunk = items_per_chunk;
}
};
#endif /* DYN_ARENA_ALLOC_HPP */