clang-format

This commit is contained in:
gabime
2022-05-08 13:01:45 +03:00
parent 6d587f5181
commit 128cbe5a06
2 changed files with 7 additions and 6 deletions

View File

@@ -324,7 +324,7 @@ template<bool B, class T = void>
using enable_if_t = typename std::enable_if<B, T>::type;
template<typename T, typename... Args>
std::unique_ptr<T> make_unique(Args &&...args)
std::unique_ptr<T> make_unique(Args &&... args)
{
static_assert(!std::is_array<T>::value, "arrays not supported");
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));