summaryrefslogtreecommitdiffstats
path: root/src/kile/kiledebug.h
blob: b388acaf07cea4c8549a90bb8e1205223994beda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/***************************************************************************
* begin                : 26.09.2007
* copyright            : (C) Thomas Braun
* email                : braun _aeht_ physik.fu-berlin.de
****************************************************************************/

/***************************************************************************
*                                                                         *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License as published by  *
*   the Free Software Foundation; either version 2 of the License, or     *
*   (at your option) any later version.                                   *
*                                                                         *
***************************************************************************/
#include <kdebug.h>

#ifdef NDEBUG
	#define KILE_DEBUG(A) if (true); else kdDebug()
#else
	#define KILE_DEBUG(A) kdDebug(A)
#endif