Skip to content

Commit 2fe2735

Browse files
authored
Replace _DEBUG with Z3DEBUG (#7628)
Fixes #7627
1 parent a1673f2 commit 2fe2735

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/memory_manager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class memory {
7575
};
7676

7777

78-
#if _DEBUG
78+
#if Z3DEBUG
7979

8080
#define alloc(T,...) new (memory::allocate(__FILE__,__LINE__,#T, sizeof(T))) T(__VA_ARGS__)
8181
#define dealloc(_ptr_) deallocf(__FILE__,__LINE__,_ptr_)

0 commit comments

Comments
 (0)