aboutsummaryrefslogtreecommitdiff
path: root/src/Debug.hh
blob: 59072e83cef434ff4dd1739c39f61b2ccc8a1222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef DEBUG_HH
#define DEBUG_HH

#include <iostream>

#ifdef DEBUG
#define fbdbg std::cerr<<__FILE__<<"("<<__LINE__<< "): "
#else
#define fbdbg if (false) std::cerr
#endif // DEBUG

#endif // DEBUG_HH