Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
fix MASTER crashes
  • Loading branch information
withmorten committed Feb 4, 2021
1 parent 7aaaaa9 commit bf299e5c17387751dcd6ab0af0b7cea85bca33cf
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/core/common.h
@@ -354,7 +354,7 @@ __inline__ void TRACE(char *f, ...) { } // this is re3 only, and so the function
#ifndef MASTER #ifndef MASTER
#define assert(_Expression) (void)( (!!(_Expression)) || (re3_assert(#_Expression, __FILE__, __LINE__, __FUNCTION__), 0) ) #define assert(_Expression) (void)( (!!(_Expression)) || (re3_assert(#_Expression, __FILE__, __LINE__, __FUNCTION__), 0) )
#else #else
#define assert(_Expression) #define assert(_Expression) (_Expression)
#endif #endif
#define ASSERT assert #define ASSERT assert


0 comments on commit bf299e5

Please sign in to comment.