Skip to content

Instantly share code, notes, and snippets.

@tanitanin
Created November 6, 2014 13:33
Show Gist options
  • Save tanitanin/f10c53030cbd5be474fa to your computer and use it in GitHub Desktop.
Save tanitanin/f10c53030cbd5be474fa to your computer and use it in GitHub Desktop.
Console output switching by debug option (-g)
#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