mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 10:47:35 +02:00
Suppress a bogus MSVC warning
This commit is contained in:
@ -71,8 +71,10 @@
|
|||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
# define FMT_MSC_VER _MSC_VER
|
# define FMT_MSC_VER _MSC_VER
|
||||||
|
# define FMT_SUPPRESS_MSC_WARNING(n) __pragma(warning(suppress : n))
|
||||||
#else
|
#else
|
||||||
# define FMT_MSC_VER 0
|
# define FMT_MSC_VER 0
|
||||||
|
# define FMT_SUPPRESS_MSC_WARNING(n)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Check if relaxed C++14 constexpr is supported.
|
// Check if relaxed C++14 constexpr is supported.
|
||||||
@ -325,7 +327,7 @@ FMT_CONSTEXPR typename std::make_unsigned<Int>::type to_unsigned(Int value) {
|
|||||||
return static_cast<typename std::make_unsigned<Int>::type>(value);
|
return static_cast<typename std::make_unsigned<Int>::type>(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr unsigned char micro[] = "\u00B5";
|
FMT_SUPPRESS_MSC_WARNING(4566) constexpr unsigned char micro[] = "\u00B5";
|
||||||
|
|
||||||
template <typename Char> constexpr bool is_unicode() {
|
template <typename Char> constexpr bool is_unicode() {
|
||||||
return FMT_UNICODE || sizeof(Char) != 1 ||
|
return FMT_UNICODE || sizeof(Char) != 1 ||
|
||||||
|
Reference in New Issue
Block a user