Skip to content

Instantly share code, notes, and snippets.

View gist:ce8f088fa6a37e30d9df1c672b3d27bf
namespace cxx11_support
{
template<class T> std::unique_ptr<T> make_unique( ... ) { ... }
}
#if LIB_HAS_CXX11
namespace cxx11 = std;
#else
namespace cxx11 = cxx11_support;
#endif