aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2023-10-20 17:29:23 +0200
committerStefan Boberg <[email protected]>2023-10-20 17:29:23 +0200
commit1d7a5730860943263093439b4abb99ad78d3758e (patch)
treed241b153f1a03f2b088b342dcd0e21f343bb951b /src
parentmore cleanup from sb/proto (diff)
downloadzen-1d7a5730860943263093439b4abb99ad78d3758e.tar.xz
zen-1d7a5730860943263093439b4abb99ad78d3758e.zip
explicit ChunkingLinearAllocator
Diffstat (limited to 'src')
-rw-r--r--src/zencore/include/zencore/memory.h2
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();