diff --git a/src/common/Common.h b/src/common/Common.h index e33210ecd3b..3010a486506 100644 --- a/src/common/Common.h +++ b/src/common/Common.h @@ -132,12 +132,7 @@ struct TC_COMMON_API LocalizedString namespace Trinity { - //! std::make_unique implementation (TODO: remove this once C++14 is supported) - template - std::unique_ptr make_unique(Args&& ...args) - { - return std::unique_ptr(new T(std::forward(args)...)); - } + using std::make_unique; } #endif