Skip to content

Instantly share code, notes, and snippets.

@cor3ntin
Created January 10, 2018 15:24
Show Gist options
  • Save cor3ntin/c007738915ba90c719452e553ab2989f to your computer and use it in GitHub Desktop.
Save cor3ntin/c007738915ba90c719452e553ab2989f to your computer and use it in GitHub Desktop.
constexpr {
bool debug = /*...*/;
log->(std::meta::expression<const char*> c, std::meta::expression<>... args) {
if(debug) {
-> {
printf(->c, (->args)...);
};
}
}
}
void foo() {
log("Hello %", "World"); //expand to printf("Hello World") only and only if debug is true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment