prevent_false_instantiations.cpp 164 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #include "prevent_false_instantiations.h" void func1() { DO_SOMETHING(); } void func2() { DO_SOMETHING(); } int main() { func1(); func2(); return 0; }