* more MSVC warning fixes from Kenneth Riddile

* 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
This commit is contained in:
Benoit Jacob
2008-12-19 02:59:04 +00:00
parent f34a4fa335
commit 84bb868f07
5 changed files with 11 additions and 6 deletions

View File

@@ -3,7 +3,7 @@
#ifdef _MSC_VER
#pragma warning( push )
#pragma warning( disable : 4181 4244 4127 )
#pragma warning( disable : 4181 4244 4127 4211 )
#endif
#endif // EIGEN_DISABLEMSVCWARNINGS_H