Skip to content

Commit a386641

Browse files
committed
Fix compilation. Sorry...
1 parent f75889c commit a386641

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xrCore/xrMemory.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class XRCORE_API xrMemory
2020
// Additional 16 bytes of memory almost like in original xr_aligned_offset_malloc
2121
// But for DEBUG we don't need this if we want to find memory problems
2222
#ifdef DEBUG
23-
constexpr size_t reserved = 0;
23+
size_t reserved = 0;
2424
#else
25-
constexpr size_t reserved = 16;
25+
size_t reserved = 16;
2626
#endif
2727

2828
public:

0 commit comments

Comments
 (0)