#pragma once #include #include namespace QtNodes { namespace detail { #if (!defined(_MSC_VER) && (__cplusplus < 201300)) || \ ( defined(_MSC_VER) && (_MSC_VER < 1800)) //_MSC_VER == 1800 is Visual Studio 2013, which is already somewhat C++14 compilant, // and it has make_unique in it's standard library implementation template std::unique_ptr make_unique(Args&&... args) { return std::unique_ptr(new T(std::forward(args)...)); } #else template std::unique_ptr make_unique(Args&&... args) { return std::make_unique(std::forward(args)...); } #endif } }