struct Test
{
  static const int value = []() -> int { return 0; } ();
};

With gcc-4.6 I get something like, error: function needs to be constexpr. I have tried multiple combinations of putting constexpr at various places, but no luck.

Is constexpr supported for lambda functions as well (irrespective of return type specified or not) ? What is the correct syntax ?

Any work around possible ?

link|improve this question

Under what circumstances would a constexpr lambda function be useful? It seems to me like it would only end up adding another pair of braces around the actual expression – bdonlan Jun 21 '11 at 3:51
@bdonlan, I have a use case for that (to calculate number of __VA_ARGS__ in macro). But explaining that will be a whole new question. – iammilind Jun 21 '11 at 3:54
feedback

1 Answer

up vote 7 down vote accepted

From the C++0x FDIS ยง7.1.5[dcl.constexpr]/1:

The constexpr specifier shall be applied only to the definition of a variable, the declaration of a function or function template, or the declaration of a static data member of a literal type.

A lambda expression is none of those things and thus may not be declared constexpr.

link|improve this answer
Any work around possible for that ? – iammilind Jun 21 '11 at 3:52
Workaround for what? What are you trying to accomplish with a constexpr lambda expression? Why can you not use an ordinary function or function template? – James McNellis Jun 21 '11 at 3:57
1  
@iammilind: Well, how about a handwritten functor with constexpr operator()? :P – Xeo Jun 21 '11 at 3:57
I am able to calculate number of __VA_ARGS__ of macro at run time using lambda expression. Just making it constexpr will be a compile time constant. Explaining that will be a detailed new topic. I know that there are boost alternatives available, but the method I have used seems to me very straight forward and handy. – iammilind Jun 21 '11 at 3:59
1  
Why not just use a VA_NARGS and do the computation at preprocessing (see the example at the beginning of this answer). – James McNellis Jun 21 '11 at 4:03
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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