vote up 4 vote down star
1

Is there any official, or inofficial, #defines for when a compiler is Cpp0x compliant? Even better, for specific Cpp0x functionality (~#cpp0xlambda, #cpp0xrvalue etc)?

(Haven't found anything about this on the net)

flag

2 Answers

vote up 5 vote down check

Bjarne's C++0x FAQ says:

__cplusplus

In C++0x the macro __cplusplus will be set to a value that differs from (is greater than) the current 199711L.

link|flag
But the macro __cplusplus should not be set to 199711L for any compiler that does not implement the full C++98 standard. – dalle Nov 18 at 14:15
vote up 12 vote down

For C++03 according to 16.8/1 (Predefined macro names):

The name __cplusplus is defined to the value 199711L when compiling a C++ translation unit.

For C++0x draft n2857 according to 16.8/1 (Predefined macro names):

The name __cplusplus is defined to the value [tbd] when compiling a C++ translation unit.

link|flag
It is reaonable to expect this to be a number > 200911L but < 201012L – MSalters Nov 6 at 9:31
No #defines for specific functionality? – Viktor Sehr Nov 6 at 10:45
Defines for specific functionality could be defined by implementation. Standard doesn't have such defines. – Kirill V. Lyadvinsky Nov 6 at 11:04
@Viktor Sehr: Either a compiler implement the standard or not, there is nothing in-between. __cplusplus may not be set to the predefined value if the full standard isn't implemented. – dalle Nov 19 at 10:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.