1
0

Fix spaces

This commit is contained in:
worktycho 2014-10-12 12:17:29 +01:00
parent 8dfeb6e324
commit 6a448be88c

View File

@ -420,8 +420,8 @@ typename std::enable_if<std::is_arithmetic<T>::value, C>::type CeilC(T a_Value)
//temporary replacement for std::make_unique until we get c++14
template< class T, class... Args >
std::unique_ptr<T> make_unique( Args&&... args )
template <class T, class... Args>
std::unique_ptr<T> make_unique(Args&&... args)
{
return std::unique_ptr<T>(new T(args...));
}