Files
textmate/Frameworks/OakDebug/src/OakDebug.h
Allan Odgaard 9894969e67 Initial commit
2012-08-09 16:25:56 +02:00

26 lines
398 B
C

#ifndef OAKDEBUG_H
#define OAKDEBUG_H
#ifndef PUBLIC
#define PUBLIC __attribute__((__visibility__("default")))
#endif
#ifdef OakDebug_EXPORTS
#undef NDEBUG
#endif
#include "OakAssert.h"
#include "OakDebugLog.h"
#include "OakWatchLeaks.h"
#include "OakBenchmark.h"
#ifndef NDEBUG
#define DB(code) code
#define DB_VAR
#else
#define DB(code)
#define DB_VAR __attribute__ ((unused))
#endif
#endif