Removing dangling debugging macros

This commit is contained in:
Diego Didona 2020-04-07 18:08:02 +02:00
parent 0f0486703b
commit 69cf7a349d

View File

@ -25,21 +25,6 @@
#ifndef ART_H
#define ART_H
//#define DEBUG
#ifdef DEBUG
#define ARTRACE(format, arg...)\
do { \
fprintf(stdout, "%s:%d:" format , __FUNCTION__, __LINE__,##arg); fflush(stdout);\
} while (0)
#define ART_PRINT(format, arg...) fprintf(stdout, "" format , ##arg); fflush(stdout);
#else //NO DEBUG
#define ART_PRINT(format, arg...)
#endif //DEBUG
struct art_iterator;