mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
*forward port fix in MapBase::coeff(int) and coeffRef(int)
*forward port expanded map.cpp unit test *fix unused variable warnings
This commit is contained in:
@@ -205,7 +205,7 @@
|
||||
{
|
||||
bool inplace = (dst==src);
|
||||
bool aligned = ( (reinterpret_cast<size_t>(src)&15) | (reinterpret_cast<size_t>(dst)&15) ) == 0;
|
||||
int key = (nfft<<3 ) | (inverse<<2) | (inplace<<1) | aligned;
|
||||
int key = (nfft<<3 ) | (inverse<<2) | (inplace<<1) | static_cast<int>(aligned);
|
||||
return m_plans[key];
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user