Does MSVC10 support the C++0x draft standard's range based loop? http://en.wikipedia.org/wiki/C%2B%2B0x#Range-based_for-loop
Example:
for (int p& : array) { ... }
|
Does MSVC10 support the C++0x draft standard's range based loop? http://en.wikipedia.org/wiki/C%2B%2B0x#Range-based_for-loop Example:
|
|||
|
No. Stephan T. Lavavej's explains the feature was altered too late in Visual Studio 2010's release cycle. Comments on the Visual Studio Team's blog: http://blogs.msdn.com/b/vcblog/archive/2009/07/13/intellisense-and-browsing-with-c-0x.aspx |
|||
|
|
|
It doesn't, but you can simulate it with a macro.
|
|||||||||
|
for each (int& p in array)should work – Ben Voigt Aug 1 '11 at 13:32