mirror of
https://github.com/textmate/textmate.git
synced 2026-04-06 03:01:29 -04:00
26 lines
398 B
C
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
|