
28 Sep
2006
28 Sep
'06
9:09 p.m.
Doug Gregor <dgregor@cs.indiana.edu> writes:
On Sep 28, 2006, at 3:20 AM, Andy Little wrote:
And a Question to Doug Gregor Does ConceptGCC support decltype and auto? Please note: this is Not a feature request, just a simple question! :-)
No, we don't have support for decltype or auto in ConceptGCC.
Of course, you can fake decltype with concepts, if you want:
auto concept Callable2<typename F, typename T1, typename T2> { typename result_type; result_type operator()(F, T1, T2); }
Doug, that's ridiculously cool... and once you show it, it seems so obvious that it makes me feel dumb. -- Dave Abrahams Boost Consulting www.boost-consulting.com