mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-23 05:14:26 +08:00

* actually GCC 4.3.0 has a bug, "deprecated" placed at the end of a function prototype doesn't have any effect, moving them to the start of the function prototype makes it actually work! * finish porting the cholesky unit-test to the new LLT/LDLT, after the above fix revealed a deprecated warning
9 lines
211 B
C
9 lines
211 B
C
#ifndef EIGEN_DISABLEMSVCWARNINGS_H
|
|
#define EIGEN_DISABLEMSVCWARNINGS_H
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning( push )
|
|
#pragma warning( disable : 4181 4244 4127 4211 )
|
|
#endif
|
|
|
|
#endif // EIGEN_DISABLEMSVCWARNINGS_H
|