Created
November 6, 2014 13:33
-
-
Save tanitanin/f10c53030cbd5be474fa to your computer and use it in GitHub Desktop.
Console output switching by debug option (-g)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <iostream> | |
#ifdef DEBUG | |
#define debug std::cout | |
#else | |
#define debug true ? : std::cout | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment