commit c5f4b78ffa30059c3af434a44f701f02383cda08
parent 2d82cf08618cc01d40ad02def931d0736984d33b
Author: Michael Savage <mikejsavage@gmail.com>
Date: Thu, 2 Nov 2017 18:15:29 +0200
No need to undef assert
Diffstat:
1 file changed, 0 insertions(+), 4 deletions(-)
diff --git a/intrinsics.h b/intrinsics.h
@@ -56,10 +56,6 @@ typedef uintptr_t uptr;
#define COUNTER_NAME( x ) CONCAT( x, __COUNTER__ )
#define LINE_NAME( x ) CONCAT( x, __LINE__ )
-#if defined( assert )
-#undef assert
-#endif
-
inline void assert_impl( const bool predicate, const char * message ) {
if( !predicate ) {
puts( message );