Since Xcode 5.1 includes clang 3.4, it should be possible to use std::make_unique.
It seems to be defined in memory.h.
However, it needs to have _LIBCPP_STD_VER > 11 but it is still set to 11 because of the value of __cplusplus macro (still 201103L).
Is there a way to change this?
