mirror of
https://github.com/fmtlib/fmt.git
synced 2025-08-01 19:54:46 +02:00
Suppress a warning
This commit is contained in:
@@ -308,7 +308,17 @@ inline auto do_write(const std::tm& time, const std::locale& loc, char format,
|
|||||||
#else
|
#else
|
||||||
using code_unit = char32_t;
|
using code_unit = char32_t;
|
||||||
#endif
|
#endif
|
||||||
auto& f = std::use_facet<std::codecvt<code_unit, char, std::mbstate_t>>(loc);
|
|
||||||
|
using codecvt = std::codecvt<code_unit, char, std::mbstate_t>;
|
||||||
|
#if FMT_CLANG_VERSION
|
||||||
|
# pragma clang diagnostic push
|
||||||
|
# pragma clang diagnostic ignored "-Wdeprecated"
|
||||||
|
auto& f = std::use_facet<codecvt>(loc);
|
||||||
|
# pragma clang diagnostic pop
|
||||||
|
#else
|
||||||
|
auto& f = std::use_facet<codecvt>(loc);
|
||||||
|
#endif
|
||||||
|
|
||||||
auto mb = std::mbstate_t();
|
auto mb = std::mbstate_t();
|
||||||
const char* from_next = nullptr;
|
const char* from_next = nullptr;
|
||||||
code_unit* to_next = nullptr;
|
code_unit* to_next = nullptr;
|
||||||
|
Reference in New Issue
Block a user