We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f75889c commit a386641Copy full SHA for a386641
src/xrCore/xrMemory.h
@@ -20,9 +20,9 @@ class XRCORE_API xrMemory
20
// Additional 16 bytes of memory almost like in original xr_aligned_offset_malloc
21
// But for DEBUG we don't need this if we want to find memory problems
22
#ifdef DEBUG
23
- constexpr size_t reserved = 0;
+ size_t reserved = 0;
24
#else
25
- constexpr size_t reserved = 16;
+ size_t reserved = 16;
26
#endif
27
28
public:
0 commit comments