The __COUNTER__ symbol is provided by VC++ and GCC, and gives an increasing non-negative integral value each time it is used.
__COUNTER__
I\'m interested to learn w
It's used in the xCover code coverage library, to mark the lines that execution passes through, to find ones that are not covered.