From e37861d46f37640e4e7ba5a07fc5470536dc991a Mon Sep 17 00:00:00 2001 From: neargye Date: Wed, 18 May 2022 22:30:04 +0400 Subject: [PATCH] clean-up --- include/nameof.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nameof.hpp b/include/nameof.hpp index 73edc63..f8a02e4 100644 --- a/include/nameof.hpp +++ b/include/nameof.hpp @@ -841,7 +841,7 @@ string nameof_type_rtti(const char* tn) { template string nameof_full_type_rtti(const char* tn) { -static_assert(nameof_type_rtti_supported::value, "nameof::nameof_type_rtti unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility)."); + static_assert(nameof_type_rtti_supported::value, "nameof::nameof_type_rtti unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility)."); const auto dmg = abi::__cxa_demangle(tn, nullptr, nullptr, nullptr); auto name = string{dmg}; std::free(dmg);