diff options
| author | Stefan Boberg <[email protected]> | 2023-10-20 17:29:23 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-10-20 17:29:23 +0200 |
| commit | 1d7a5730860943263093439b4abb99ad78d3758e (patch) | |
| tree | d241b153f1a03f2b088b342dcd0e21f343bb951b /src | |
| parent | more cleanup from sb/proto (diff) | |
| download | zen-1d7a5730860943263093439b4abb99ad78d3758e.tar.xz zen-1d7a5730860943263093439b4abb99ad78d3758e.zip | |
explicit ChunkingLinearAllocator
Diffstat (limited to 'src')
| -rw-r--r-- | src/zencore/include/zencore/memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zencore/include/zencore/memory.h b/src/zencore/include/zencore/memory.h index 9c9a0330e..a1f48555e 100644 --- a/src/zencore/include/zencore/memory.h +++ b/src/zencore/include/zencore/memory.h @@ -53,7 +53,7 @@ public: class ChunkingLinearAllocator { public: - ChunkingLinearAllocator(uint64_t ChunkSize, uint64_t ChunkAlignment = sizeof(std::max_align_t)); + explicit ChunkingLinearAllocator(uint64_t ChunkSize, uint64_t ChunkAlignment = sizeof(std::max_align_t)); ~ChunkingLinearAllocator(); ZENCORE_API void Reset(); |