New paper: N3708, A proposal to add coroutines to the C++ standard library -- O Kowalke, N Goodspeed
A new WG21 paper is available. A copy is linked below, and the paper will also appear in the next normal WG21 mailing. If you are not a committee member, please use the comments section below or the std-proposals forum for public discussion.
Document number: N3708
Date: 2013-03-04
A proposal to add coroutines to the C++ standard library
by Oliver Kowalke and Nat Goodspeed
Excerpt:
This proposal suggests adding two first-class continuations to the C++ standard library:
std::coroutine<T>::pull_typeandstd::coroutine<T>::push_type.

Danny Kalev wrote a nice article yesterday about a new C++ feature -- actually, two related C++14 features -- that were just added to the draft Standard in April and will be coming to real compilers in the near future.
A nice piece of writing on a C++11 feature:
Here is a nicely accessible description of synchronization in the C++ memory model:
On CRTP with multi-level inheritance, cloning, and the constructor forwarding problem.
Today on Dr. Dobb's: