debugging.h 156 B

123456
  1. #include <iostream>
  2. //#define DEBUG(x) do { std::cerr << x; } while (0)
  3. #define DEBUG(x) do { std::cout << x << std::endl; } while (0)
  4. //#define DEBUG(x)