mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-18 14:34:17 +08:00
Fix compilation if ICC.
This commit is contained in:
parent
26f9907542
commit
5269d11935
@ -8,12 +8,14 @@
|
||||
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
template<typename T>
|
||||
Array<T,4,1> four_denorms() { return four_denorms<double>().cast<T>(); }
|
||||
Array<T,4,1> four_denorms();
|
||||
|
||||
template<>
|
||||
Array4f four_denorms() { return Array4f(5.60844e-39f, -5.60844e-39f, 4.94e-44f, -4.94e-44f); }
|
||||
template<>
|
||||
Array4d four_denorms() { return Array4d(5.60844e-313, -5.60844e-313, 4.94e-324, -4.94e-324); }
|
||||
template<typename T>
|
||||
Array<T,4,1> four_denorms() { return four_denorms<double>().cast<T>(); }
|
||||
|
||||
template<typename MatrixType>
|
||||
void svd_fill_random(MatrixType &m, int Option = 0)
|
||||
|
Loading…
Reference in New Issue
Block a user