2 * Copyright Johannes Sixt
3 * This file is licensed under the GNU General Public License Version 2.
4 * See the file COPYING in the toplevel directory of the source directory.
15 # define ASSERT(x) ((void)0)
17 # define ASSERT(x) ((x) ? void(0) : void(kdDebug() << \
18 (QString("assertion failed: ") + #x).ascii() << "\n"))
21 #ifdef WANT_TRACE_OUTPUT
22 # define TRACE(x) (kdDebug() << (const char*)(x) << "\n")
24 # define TRACE(x) ((void)0)