Herb Sutter has posted his trip report from the ISO C++ Spring 2013 meeting in Bristol.
The post includes details on features to be included in C++14, including:
std::make_unique
– never use “new” again- Generic lambdas – allow auto for type name in lambdas
- Dynamic arrays – stack-based arrays can take size parameter at runtime
std::optional
– for variables that are ‘not set’ (like F# option)- Concepts lite – constraints for templates