Created
October 28, 2008 06:18
-
-
Save bdonlan/20313 to your computer and use it in GitHub Desktop.
This file contains 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
template<typename T> | |
struct DebugCounter { | |
static int value; | |
}; | |
template<typename T> | |
int DebugCounter<T>::value = 0; | |
#define DEBUG_COUNTER(name) \ | |
DebugCounter<struct DebugCounter_tag_##name>::value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment