From 85549b56884d494f86a93934e94592c70900aedc Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 5 Mar 2012 13:09:00 +0100 Subject: [PATCH] Uncommented warning in to prevent compile errors in binutils. This is because they treat warnings as errors. --- libmaxsi/include/assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmaxsi/include/assert.h b/libmaxsi/include/assert.h index c1315a71..321e58ea 100644 --- a/libmaxsi/include/assert.h +++ b/libmaxsi/include/assert.h @@ -34,7 +34,7 @@ __BEGIN_DECLS #endif #ifndef NDEBUG -#warning The assert macro is not implemented +/* #warning The assert macro is not implemented */ #endif #define assert(ignore)((void) 0)