Search Results

2
votes

how to detect if I’m compiling code under visual studio 8?

_MSC_VER should be defined to a specific version number. You can either #ifdef on it, or you can use the actual define and do a runtime test. (If for some reason you wanted to run different code …