Skip to content

Commit

Permalink
Increase size of buf in BumpAllocator so that there is enough memor…
Browse files Browse the repository at this point in the history
…y for HLD test
  • Loading branch information
IvanRenison committed Mar 2, 2024
1 parent ae2fbfe commit 5768ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/various/BumpAllocator.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#pragma once

// Either globally or in a single class:
static char buf[450 << 20];
static char buf[450 << 21];
void* operator new(size_t s) {
static size_t i = sizeof buf;
assert(s < i);
Expand Down

0 comments on commit 5768ad8

Please sign in to comment.