mirror of
https://github.com/gabime/spdlog.git
synced 2024-12-26 10:31:34 +08:00
Avoid c-style casting
This commit is contained in:
parent
ca1eaedf7b
commit
8d46977060
@ -37,7 +37,7 @@ SPDLOG_INLINE stdout_sink_base<ConsoleMutex>::stdout_sink_base(FILE *file)
|
|||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
// get windows handle from the FILE* object
|
// get windows handle from the FILE* object
|
||||||
|
|
||||||
handle_ = (HANDLE)::_get_osfhandle(::_fileno(file_));
|
handle_ = reinterpret_cast<HANDLE>(::_get_osfhandle(::_fileno(file_)));
|
||||||
|
|
||||||
// don't throw to support cases where no console is attached,
|
// don't throw to support cases where no console is attached,
|
||||||
// and let the log method to do nothing if (handle_ == INVALID_HANDLE_VALUE).
|
// and let the log method to do nothing if (handle_ == INVALID_HANDLE_VALUE).
|
||||||
|
Loading…
Reference in New Issue
Block a user