C++0x work progressing
Posted in Coding on November 28th, 2007 by Cory – Be the first to commentA bit delayed, but I just found the results of the October 2007 C++ meeting. In it, they voted in several really nice things for the C++0x draft:
- nullptr – no more using 0 or NULL and getting int/pointer overload issues. (N2431)
- Atomic library – comes with several classes and utility functions for working with memory ordering and lock–free algorithms. (N2427)
- Threading library – basic threading, mutexes, and condition variables. (N2447)
- Unicode literals – UTF-8 and UTF-16 string literals. (N2442)
- Unicode codecvt facets – UTF-8 and UTF-16 codecvt facets for reading Unicode streams. (N2401)


