mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
warning C4267: 'argument': conversion from 'size_t' to 'DWORD', possible loss of data
This commit is contained in:
parent
b6e19e5953
commit
d2d1c9c560
@ -1351,7 +1351,7 @@ FMT_FUNC void vprint(std::FILE* f, string_view format_str, format_args args) {
|
||||
internal::utf8_to_utf16 u16(string_view(buffer.data(), buffer.size()));
|
||||
auto written = DWORD();
|
||||
if (!WriteConsoleW(reinterpret_cast<HANDLE>(_get_osfhandle(fd)),
|
||||
u16.c_str(), u16.size(), &written, nullptr)) {
|
||||
u16.c_str(), static_cast<DWORD>(u16.size()), &written, nullptr)) {
|
||||
throw format_error("failed to write to console");
|
||||
}
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user