Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
MistEO committed Oct 21, 2023
1 parent f0ebed4 commit 9bba212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9bba212

Please sign in to comment.