C++11 does not provide concurrent containers by itself. However, there are library options.
Besides the already mentioned PPL, don't forget the Intel TBB library.
It has a concurrent queue, hash_map, set and vector implementation. But it's not only a thread-safe container library, it also comes with parallel version of standard algorithms (for-loop, reduce, sort,...).
Intel TBB website