user542687
user542687

Reputation:

Any reason not to use c++0x for iOS development?

Is there any reason not to use c++0x and the libc++0x standard library for iOS development?

Upvotes: 4

Views: 579

Answers (2)

Prof. Falken
Prof. Falken

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

gandolf
gandolf

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

Related Questions