mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
Disable MSVC's "decorated name length exceeded, name was truncated" warning in unit tests.
This commit is contained in:
parent
61a32f2a4c
commit
d616a81294
@ -736,3 +736,8 @@ int main(int argc, char *argv[])
|
|||||||
// remark #1572: floating-point equality and inequality comparisons are unreliable
|
// remark #1572: floating-point equality and inequality comparisons are unreliable
|
||||||
#pragma warning disable 279 383 1418 1572
|
#pragma warning disable 279 383 1418 1572
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
// 4503 - decorated name length exceeded, name was truncated
|
||||||
|
#pragma warning( disable : 4503)
|
||||||
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user