mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix failing builds and update CI on push.
Specifically: - Fixed ctz on 32-bit arm (where `uint64_t` is `unsigned long long`) - Fixed build of random_cpp11 snippet when C++11 is disabled - Updated CI scripts to run windows on push, and added a no-c++11 test
This commit is contained in:
@@ -170,10 +170,8 @@ template<> struct is_integral<signed int> { enum { value = true }; }
|
||||
template<> struct is_integral<unsigned int> { enum { value = true }; };
|
||||
template<> struct is_integral<signed long> { enum { value = true }; };
|
||||
template<> struct is_integral<unsigned long> { enum { value = true }; };
|
||||
#if EIGEN_COMP_MSVC
|
||||
template<> struct is_integral<signed __int64> { enum { value = true }; };
|
||||
template<> struct is_integral<unsigned __int64> { enum { value = true }; };
|
||||
#endif
|
||||
template<> struct is_integral<signed long long> { enum { value = true }; };
|
||||
template<> struct is_integral<unsigned long long> { enum { value = true }; };
|
||||
#endif
|
||||
|
||||
#if EIGEN_HAS_CXX11
|
||||
|
||||
Reference in New Issue
Block a user