Robert Gould
Robert Gould

Reputation: 69865

What C++ compilers are supporting lambda already?

Are there C++ compilers already supporting C++0x lambda expressions?

Upvotes: 10

Views: 5810

Answers (4)

gnud
gnud

Reputation: 78568

g++ has support since 4.5. Status for C++11 support in gcc can be found here.

Upvotes: 9

luispedro
luispedro

Reputation: 7024

G++ supports it in 4.5 if you enable it using -std=gnu++0x.

Upvotes: 5

Ferruccio
Ferruccio

Reputation: 100718

Visual Studio 2010 CTP supports it already.

Update: It is now Visual Studio 2010 Beta 2

Upvotes: 13

Andrew T
Andrew T

Reputation: 5745

Intel C++ Compiler does, e.g. according to TBB Tutorial.

Upvotes: 2

Related Questions