11 lines
184 B
C++
11 lines
184 B
C++
#ifndef __UTILS__
|
|
#define __UTILS__
|
|
|
|
#ifdef DBG
|
|
#define DEBUG(msg) std::cout << __FILE__ << " " << __LINE__ << ": " << msg << std::endl
|
|
#else
|
|
#define DEBUG(msg)
|
|
#endif
|
|
|
|
#endif
|