8 lines
No EOL
113 B
C++
8 lines
No EOL
113 B
C++
#pragma once
|
|
|
|
#define DEBUG 1
|
|
#if DEBUG == 1
|
|
#define LOG(x) std::cout << x << "\n";
|
|
#else
|
|
#define LOG(x)
|
|
#endif |