fixed include of stdlib.h, and incressed the warning level
authorPatrik Gornicz <Gornicz.P@gmail.com>
Sun, 31 May 2009 03:10:15 +0000 (23:10 -0400)
committerPatrik Gornicz <Gornicz.P@gmail.com>
Sun, 31 May 2009 03:10:15 +0000 (23:10 -0400)
Makefile
src/debug.cpp

index 2e5e5cf..5361ec7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -56,7 +56,7 @@ OPTFLAGS := -O2
 DBGFLAGS := -ggdb
 PRFFLAGS := ${DBGFLAGS} -pg
 LIBFLAGS := -fPIC
-MYFLAGS  := -Wall -pedantic -ansi
+MYFLAGS  := -Wall -Wextra -pedantic -ansi
 INCFLAGS := $(addprefix -I, ${INCDIRS})
 LNKFLAGS := -shared -Wl,-soname,${SONAME}
 
index ffdfa47..57921a3 100644 (file)
@@ -24,6 +24,7 @@ using std::endl;
 
 #include <assert.h>
 #include <execinfo.h>
+#include <stdlib.h>
 
 #include "Lock.h"
 #include "Autolock.h"
@@ -75,6 +76,8 @@ void bear::DPF(int iLevel, const char* pstr)
 {
     Autolock lock(&muDPF);
 
+    (void)iLevel;
+
     cout << pstr << endl;
 }