mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-09 03:58:06 +03:00
fix Clang warnings
This commit is contained in:
parent
86409a9c4f
commit
96b4b2904c
23 changed files with 86 additions and 55 deletions
|
@ -25,7 +25,7 @@ namespace
|
|||
{
|
||||
std::chrono::system_clock::time_point FileTimeToSysTime(std::filesystem::file_time_type file_time)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
#if defined(_WIN32) && !defined(__clang__)
|
||||
return std::chrono::clock_cast<std::chrono::system_clock>(file_time);
|
||||
#else
|
||||
// Note: all compilers should switch to chrono::clock_cast
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue