up vote 1 down vote favorite
share [g+] share [fb]

Will c++ implicit function calls be a feature of C++0x ? It is an interesting feature, but I haven't seen any progress on this and the GCC C++0x page didn't even mention it.

See http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1611.pdf

link|improve this question

57% accept rate
feedback

1 Answer

up vote 2 down vote accepted

No they will not be included in the next standard update to C++ (C++0x). The idea of implicit function calls (informally: use of a niladic function name in an expression evaluates to a function call instead of decaying to its address) is interesting, and it wasn't dismissed by the committee as a bad idea. It was classified as: "Not ready for C++0x, but open to resubmit in future." (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2869.html).

link|improve this answer
Uff, I'm just looking for a SIMPLE way to do properties ... :) – QbProg Sep 13 '09 at 17:37
feedback

Your Answer

 
or
required, but never shown

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