From 83723bc6e0d59a9d8db97b4db4b816f219cfa92a Mon Sep 17 00:00:00 2001 From: MistEO Date: Sat, 21 Oct 2023 20:43:33 +0800 Subject: [PATCH] fix: build error --- 3rdparty/include/meojson/json.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3rdparty/include/meojson/json.hpp b/3rdparty/include/meojson/json.hpp index 8f55ae2f3..e3cbc8e55 100644 --- a/3rdparty/include/meojson/json.hpp +++ b/3rdparty/include/meojson/json.hpp @@ -2607,9 +2607,9 @@ namespace _serialization_helper static_assert(!sizeof(T), "Unable to serialize T. " "You can define the conversion of T to json, or overload operator<< for it."); #ifdef _MSC_VER - static_assert(!sizeof(T), "See T below: "__FUNCSIG__); + static_assert(!sizeof(T), "See T below: " __FUNCSIG__); #else - // static_assert(!sizeof(T), "See T below: "__PRETTY_FUNCTION__); + // static_assert(!sizeof(T), "See T below: " __PRETTY_FUNCTION__); #endif } } // namespace _serialization_helper