Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

If one wanted to start using C++11 features, where would one find detailed information on the features supported by the major compilers? Like "In version X we support move semantics now, but haven't gotten that shared_ptr into the std lib yet". Is there a convenient bulleted list (or can we make one) that gives this kind of information so those of us who want to play around with C++11 can know which compiler is best to turn to or what our current compiler is capable of?

share|improve this question

1 Answer

up vote 19 down vote accepted

A simple google came up with this page which has a pretty comprehensive and up-to-date comparison.

share|improve this answer
Wow thanks. Somehow I didnt see that when Googling. – Doug T. Aug 24 '11 at 12:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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