From a8c4aef6bd97aa37292819baf443862c263be2ae Mon Sep 17 00:00:00 2001 From: gabime Date: Wed, 26 Sep 2018 23:50:47 +0300 Subject: [PATCH] fix typo --- include/spdlog/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/common.h b/include/spdlog/common.h index 35f9615e..343acb80 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -178,7 +178,7 @@ using std::make_unique; template std::unique_ptr make_unique(Args &&... args) { - static_assert(!std::is_array::value, "arrays to not supported"); + static_assert(!std::is_array::value, "arrays not supported"); return std::unique_ptr(new T(std::forward(args)...)); } #endif