Fix MSVC error about missing std::bit_cast

This commit is contained in:
Tyler Veness 2025-08-23 22:25:52 +00:00 committed by Charles Schlosser
parent c487a4fe9e
commit d368998120

View File

@ -103,6 +103,11 @@
#include <thread>
#endif
// for std::bit_cast()
#if defined(__cpp_lib_bit_cast) && __cpp_lib_bit_cast >= 201806L
#include <bit>
#endif
// for outputting debug info
#ifdef EIGEN_DEBUG_ASSIGN
#include <iostream>