Add a missing #include <version> to Core.

This commit is contained in:
Saran Tunyasuvunakool 2025-10-15 15:10:30 +00:00 committed by Rasmus Munk Larsen
parent da55dd1471
commit db02f97850

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>