From: Peng Huang Date: Sun, 18 Apr 2010 03:03:24 +0000 (+0800) Subject: Remove debug output X-Git-Tag: 1.3.10~198 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=319924aa7ea5bb9cce557d0c474ac5d641f78dbb;p=platform%2Fupstream%2Fibus-libpinyin.git Remove debug output --- diff --git a/src/Pointer.h b/src/Pointer.h index b7d9f83..c2d59a6 100644 --- a/src/Pointer.h +++ b/src/Pointer.h @@ -9,13 +9,11 @@ template struct Pointer { public: Pointer (T *p = NULL) : m_p (NULL) { - g_debug ("new"); set (p); } ~Pointer (void) { set (NULL); - g_debug ("delete"); } void set (T * p) {