Removed unnecessary \bug declarations.
[blaRAY.git] / General / Debug.hh
blob02d2bc57823018cc09f841fa08b63a572c32bd2c
1 /**********************************************************************
2 * blaRAY -- photon mapper/raytracer
3 * (C) 2008 by Tomasz bla Fortuna <bla@thera.be>, <bla@af.gliwice.pl>
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * any later version.
10 * See Docs/LICENSE
11 *********************/
13 #ifndef _DEBUG_H_
14 #define _DEBUG_H_
16 //#define DEBUG
17 //#define VALGRIND
19 #ifdef DEBUG
20 # undef DEBUG
21 # define DEBUG 1
22 #else
23 # define DEBUG 0
24 #endif
26 /* For debugging memory usage */
27 #ifdef VALGRIND
28 # undef VALGRIND
29 # define VALGRIND 1
30 #else
31 # define VALGRIND 0
32 #endif
35 #endif