]> Dogcows Code - chaz/yoink/blob - src/moof/debug.hh
testing new non-autotools build system
[chaz/yoink] / src / moof / debug.hh
1
2 /*] Copyright (c) 2009-2010, Charles McGarvey [**************************
3 **] All rights reserved.
4 *
5 * vi:ts=4 sw=4 tw=75
6 *
7 * Distributable under the terms and conditions of the 2-clause BSD license;
8 * see the file COPYING for a complete text of the license.
9 *
10 **************************************************************************/
11
12 #ifndef _MOOF_DEBUG_HH_
13 #define _MOOF_DEBUG_HH_
14
15 /**
16 * \file debug.hh
17 * Debugging facilities.
18 */
19
20 #include <cstdlib> // exit
21
22 #include <moof/log.hh>
23
24
25 #undef ASSERT
26 #if NDEBUG
27 #define ASSERT(X)
28 #else
29 /**
30 * Macro which tests an assertion and issues a log_error() and exits if the
31 * assertion is false.
32 * \param X test to perform.
33 */
34 #define ASSERT(X) if (!(X)) moof::log_error \
35 << "false assertion at " << __FILE__ << ":" << __LINE__ << ", " \
36 << #X, exit(1)
37 #endif
38
39
40 #endif // _MOOF_DEBUG_HH_
41
This page took 0.031329 seconds and 4 git commands to generate.