diff options
author | David Tardon <dtardon@redhat.com> | 2017-04-15 18:15:57 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2017-04-15 18:15:57 +0200 |
commit | 01bd0616259f3989c50b5433411a2284b6e66796 (patch) | |
tree | fa7039477d1dcd08730d7e422eb8d30cc7b40840 /src | |
parent | 11d476db0762df0e7b5dbec5cc7dd802082d9bb1 (diff) |
drop verbose debug
Change-Id: I5e4f1f1301e9490fa0b479c92a88f5fd975b23b2
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libfreehand_utils.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lib/libfreehand_utils.h b/src/lib/libfreehand_utils.h index 0a48527..cc0e979 100644 --- a/src/lib/libfreehand_utils.h +++ b/src/lib/libfreehand_utils.h @@ -30,18 +30,10 @@ #define FH_EPSILON 1E-6 #define FH_ALMOST_ZERO(m) (fabs(m) <= FH_EPSILON) -// debug message includes source file and line number -//#define VERBOSE_DEBUG 1 - // do nothing with debug messages in a release compile #ifdef DEBUG -#ifdef VERBOSE_DEBUG -#define FH_DEBUG_MSG(M) printf("%15s:%5d: ", __FILE__, __LINE__); printf M -#define FH_DEBUG(M) M -#else #define FH_DEBUG_MSG(M) printf M #define FH_DEBUG(M) M -#endif #else #define FH_DEBUG_MSG(M) #define FH_DEBUG(M) |