Add a missing #include <version> to Core.

(cherry picked from commit db02f97850)
This commit is contained in:
Saran Tunyasuvunakool
2025-10-15 15:10:30 +00:00
committed by Antonio Sanchez
parent a5c3f697fa
commit 55d059108e

View File

@@ -106,6 +106,11 @@
#include <thread>
#endif
// for __cpp_lib feature test macros
#if defined(__has_include) && __has_include(<version>)
#include <version>
#endif
// for std::bit_cast()
#if defined(__cpp_lib_bit_cast) && __cpp_lib_bit_cast >= 201806L
#include <bit>