mirror of https://github.com/PCSX2/pcsx2.git
Build/VS: Fix change in latest VS 2022 update with std::chrono
For more information see: https://learn.microsoft.com/en-us/cpp/overview/what-s-new-for-visual-cpp-in-visual-studio?view=msvc-170#:~:text=Moved%20system_clock%2C%20high_resolution_clock%2C%20and%20chrono_literals%20from%20a%20commonly%20included%20internal%20header%20to%20%3Cchrono%3E.%20If%20you%20see%20compiler%20errors%20that%20types%20like%20system_clock%20or%20user%2Ddefined%20literals%20like%201729ms%20aren%27t%20recognized%2C%20include%20%3Cchrono%3E.
This commit is contained in:
parent
46221a8500
commit
f8bab2e465
|
@ -24,6 +24,7 @@
|
|||
#include <sstream>
|
||||
#include <mutex>
|
||||
#include <optional>
|
||||
#include <chrono>
|
||||
|
||||
// A helper function to parse the YAML file
|
||||
static std::optional<ryml::Tree> loadYamlFile(const char* filePath)
|
||||
|
|
Loading…
Reference in New Issue