> Log:
> Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a
> function call (or a comma expression with a function call on its right-hand
> side), possibly parenthesized, then the return type is not required to be
> complete and a temporary is not bound. Other subexpressions inside a decltype
> expression do not get this treatment.

Is there any way to detect this C++11 decltype feature?
`__has_feature(cxx_decltype)` does not work,
since this macro also detects pre-N3276 decltype.
(Boost.Config needs to detect N3276 decltype.)

Regards,
Michel
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to