Skip to content

Commit

Permalink
Renamed ASSERT to HPML_ASSERT
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi688 committed Jul 17, 2022
1 parent e34d217 commit f8d4561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/hpml/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ typedef int8_t s8;

#ifdef GLOBAL_DEBUG

#define ASSERT(boolean, ...)\
#define HPML_ASSERT(boolean, ...)\
do\
{\
if(!(boolean))\
Expand All @@ -32,7 +32,7 @@ do\
}\
} while(0)
#else
# define ASSERT(boolean, ...)
# define HPML_ASSERT(boolean, ...)
#endif

#ifdef HPML_STATIC_LIBRARY
Expand Down

0 comments on commit f8d4561

Please sign in to comment.