Reputation:
Is there any reason not to use c++0x and the libc++0x standard library for iOS development?
Upvotes: 4
Views: 579
Reputation: 24887
If you use C++ to be more portable to other platforms later, it might be smart to hold off for awhile. Some targets may not yet have a C++0x compiler, or the company policy may be to use an old but trusted compiler for game release builds.
Upvotes: 4
Reputation: 3444
@Amigable, most if not all current C++ compilers suppor C++0x to some extent. After all it is slowly become standardized.
Upvotes: 2