C ++ implicit function calls

Would C ++ be an implicit function call to be a C ++ 0x function? This is an interesting feature, but I have not seen any progress on this, and the GCC C ++ 0x page did not even mention it.

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

+4
source share
1 answer

No, they will not be included in the next standard upgrade to C ++ (C ++ 0x). The idea of ​​implicit function calls (informally: using the name of a niladic function in an expression is evaluated as a function call instead of being decomposed to its address) is interesting, and the committee was not rejected by the committee as a bad idea. It has been classified as "Not ready for C ++ 0x, but open for resubmission in the future." ( http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2869.html ).

+3
source

All Articles