Skip to content

Commit

Permalink
Fix compilation. Sorry...
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Jun 9, 2018
1 parent f75889c commit a386641
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xrCore/xrMemory.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ class XRCORE_API xrMemory
// Additional 16 bytes of memory almost like in original xr_aligned_offset_malloc
// But for DEBUG we don't need this if we want to find memory problems
#ifdef DEBUG
constexpr size_t reserved = 0;
size_t reserved = 0;
#else
constexpr size_t reserved = 16;
size_t reserved = 16;
#endif

public:
Expand Down

0 comments on commit a386641

Please sign in to comment.