Edward Diener <eldlistmailingz@xxxxxxxxxxxxxx> writes: > Is there any predefined macro for testing the language standard > setting ( std= ) when compiling a C++ translation unit ? Not in general, no. Using -std=c++0x will defined __GXX_EXPERIMENTAL_CXX0X__. Ian