From: Behdad Esfahbod Date: Tue, 30 Apr 2013 15:34:00 +0000 (-0400) Subject: Renamed DEBUG to something else X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6c15ddfe2b45383824b64058ae69939d002183a6;p=platform%2Fupstream%2FlibHarfBuzzSharp.git Renamed DEBUG to something else Some infrastructures use DEBUG as a generic symbol. --- diff --git a/src/hb-buffer.cc b/src/hb-buffer.cc index 4e26250..c0ca484 100644 --- a/src/hb-buffer.cc +++ b/src/hb-buffer.cc @@ -549,7 +549,7 @@ void hb_buffer_t::allocate_var (unsigned int byte_i, unsigned int count, const c { assert (byte_i < 8 && byte_i + count <= 8); - if (DEBUG (BUFFER)) + if (DEBUG_ENABLED (BUFFER)) dump_var_allocation (this); DEBUG_MSG (BUFFER, this, "Allocating var bytes %d..%d for %s", @@ -564,7 +564,7 @@ void hb_buffer_t::allocate_var (unsigned int byte_i, unsigned int count, const c void hb_buffer_t::deallocate_var (unsigned int byte_i, unsigned int count, const char *owner) { - if (DEBUG (BUFFER)) + if (DEBUG_ENABLED (BUFFER)) dump_var_allocation (this); DEBUG_MSG (BUFFER, this, @@ -581,7 +581,7 @@ void hb_buffer_t::deallocate_var (unsigned int byte_i, unsigned int count, const void hb_buffer_t::assert_var (unsigned int byte_i, unsigned int count, const char *owner) { - if (DEBUG (BUFFER)) + if (DEBUG_ENABLED (BUFFER)) dump_var_allocation (this); DEBUG_MSG (BUFFER, this, diff --git a/src/hb-private.hh b/src/hb-private.hh index f1a9c3a..8121640 100644 --- a/src/hb-private.hh +++ b/src/hb-private.hh @@ -563,8 +563,8 @@ _hb_debug (unsigned int level, return level < max_level; } -#define DEBUG_LEVEL(WHAT, LEVEL) (_hb_debug ((LEVEL), HB_DEBUG_##WHAT)) -#define DEBUG(WHAT) (DEBUG_LEVEL (WHAT, 0)) +#define DEBUG_LEVEL_ENABLED(WHAT, LEVEL) (_hb_debug ((LEVEL), HB_DEBUG_##WHAT)) +#define DEBUG_ENABLED(WHAT) (DEBUG_LEVEL_ENABLED (WHAT, 0)) template static inline void _hb_debug_msg_va (const char *what,