Skip to content

Commit 931833c

Browse files
committed
Fix misleading compiler warning
1 parent b0f5bc2 commit 931833c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/memory/memory_pool.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ namespace Sass {
5555
std::vector<void*> arenas;
5656

5757
// One pointer for every bucket (zero init)
58-
void* freeList[SassAllocatorBuckets] = {};
58+
void* freeList[SassAllocatorBuckets]{};
5959

6060
// Increase the address until it sits on a
6161
// memory aligned address (maybe use `aligned`).

0 commit comments

Comments
 (0)