q0987
q0987

Reputation: 35984

which C++ Compiler complies with the latest C++ standard most

I have been looking for a c++ compiler that is available and complies most with the latest C++ standard.

The latest VS2010 is good but as many said it still doesn't comply with all of the C++ standard.

Upvotes: 5

Views: 1221

Answers (3)

relaxxx
relaxxx

Reputation: 7824

you may be interested in this summary table

EDIT:

I have found the list of tables created by Scott Meyers

Upvotes: 6

Daniel
Daniel

Reputation: 31559

GCC and Clang are very good ones. Visual Studio (of any year) will require special cases for complex code so it doesn't really comply with standards.

Upvotes: 0

Martin Beckett
Martin Beckett

Reputation: 96119

GCC has pretty good C++0x compliance, here is a list of the features it supports

Upvotes: 1

Related Questions