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