Just a quick heads up: Following Chrome and making our life as developers easier, we intend to switch to C++11 in v8 soon. For now we will do this only partially: Usage of a compiler-only features will be allowed, but not something based on headers/libraries. This means in detail:
* Usage of range-based for loops, "auto", aggregate initialization, etc. will be allowed. * Usage of initializer lists, std::array etc. will not be allowed. We do this intermediate step to support relatively old toolchains like GCC 4.6 and Xcode 4.2. This shouldn't be an issue for our clients, even embedded platforms like Raspberry Pi have toolchain support for these features. In the long run we will probably follow Chrome again, where full C++11 support is planned, something which is currently mainly blocked by Mac OS X 10.5. -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
