// define constants like M_PI and C keywords for MSVC #ifdef _MSC_VER #ifndef _USE_MATH_DEFINES #define _USE_MATH_DEFINES #endif #endif #include // NOLINTNEXTLINE(modernize-deprecated-headers) #include static_assert(M_PI == c10::pi, "c10::pi must be equal to M_PI"); static_assert( M_SQRT1_2 == c10::frac_sqrt_2, "c10::frac_sqrt_2 must be equal to M_SQRT1_2");