All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
piecePairAssert.h
Go to the documentation of this file.
1 /* piecePairAssert.h
2  */
3 #ifndef EVAL_PPAIR_PIECEPAIRASSERT_H
4 #define EVAL_PPAIR_PIECEPAIRASSERT_H
5 
6 #include <cassert>
7 
8 #ifdef PIECE_PAIR_EXTRA_DEBUG
9 # define piece_pair_assert(x) assert(x)
10 #else
11 # define piece_pair_assert(x)
12 #endif
13 
14 #endif /* EVAL_PPAIR_PIECEPAIRASSERT_H */
15 // ;;; Local Variables:
16 // ;;; mode:c++
17 // ;;; c-basic-offset:2
18 // ;;; End: