clang-format

This commit is contained in:
gabime
2020-09-26 15:34:05 +03:00
parent c7613f3e91
commit 231ca50700
10 changed files with 143 additions and 143 deletions

View File

@@ -231,7 +231,7 @@ namespace details {
using std::make_unique;
#else
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)...));