aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/DisableStupidWarnings.h
Commit message (Collapse)AuthorAge
* clang 10 aggressively warns about precision loss when converting int to ↵Gravatar Christoph Hertzberg2021-02-27
| | | | | | float (or long to double) (cherry picked from commit cd541ad52c8152340469cae210312c0e27829c8d)
* bug #1718: Add cast to successfully compile with clang on PowerPCGravatar João P. L. de Carvalho2019-08-09
| | | | Ignoring -Wc11-extensions warnings thrown by clang at Altivec/PacketMath.h
* bug #1724: Mask buggy warnings with g++-7Gravatar Christoph Hertzberg2019-06-14
| | | | | (grafted from 427f2f66d69ae9b124c2f8bcd927fb6e19e07e91 )
* oops, I've been too fast in previous copy/pasteGravatar Gael Guennebaud2018-09-27
|
* #pragma GCC diagnostic push/pop is not supported prioro to gcc 4.6Gravatar Gael Guennebaud2018-09-27
|
* Disable type-limits warnings for g++ < 4.8Gravatar Christoph Hertzberg2018-09-12
|
* Disable/ReenableStupidWarnings did not work properly, when included recursivelyGravatar Christoph Hertzberg2018-08-28
|
* Disable -Wshadow when compiling with g++Gravatar Christoph Hertzberg2018-04-21
|
* disable nvcc boolean-expr-is-constant warningGravatar Gael Guennebaud2017-07-17
|
* updated warning number for nvcc relase 8 (V8.0.61) for the stupid warning ↵Gravatar Abhijit Kundu2017-05-01
| | | | message 'calling a __host__ function from a __host__ __device__ function is not allowed'.
* Remove MSVC warning 4127 - conditional expression is constant from the ↵Gravatar Gael Guennebaud2016-12-20
| | | | disabled list as we now have a local workaround.
* Disabled the "remove the call to 'std::abs' since unsigned values cannot be ↵Gravatar Benoit Steiner2016-11-23
| | | | negative" warning introduced in clang 3.5
* Updated the list of warnings to reflect the new message ids introduced in ↵Gravatar Benoit Steiner2016-09-28
| | | | cuda 8.0
* disabled MSVC level 4 warning C4714Gravatar Sergiu Deitsch2016-09-25
| | | | | The level 4 warning (/W4) warns about functions marked as __forceinline not inlined, and generates a lot of noise.
* Suppress warning 2527 and 2529, which correspond to the "calling a __host__ ↵Gravatar Benoit Steiner2016-09-13
| | | | function from a __host__ __device__ function is not allowed" message in nvcc 6.5.
* Suppress message 1222 when compiling with nvcc: this ensures that we don't ↵Gravatar Benoit Steiner2016-09-13
| | | | warnings about unknown warning messages when compiling with older versions of nvcc
* Silenced some compilation warnings triggered by nvcc 8.0Gravatar Benoit Steiner2016-05-27
|
* bug #1221: disable gcc 6 warning: ignoring attributes on template argumentGravatar Gael Guennebaud2016-05-19
|
* Disabling the nvcc warnings in addition to the clang warnings when clang is ↵Gravatar Benoit Steiner2016-02-09
| | | | used as a frontend for nvcc
* Disable 2 more nvcc warning messagesGravatar Benoit Steiner2016-02-03
|
* Added a few commentsGravatar Benoit Steiner2016-02-03
|
* Properly disable nvcc warning messages in user code.Gravatar Benoit Steiner2016-02-03
|
* Silenced some unhelpful warnings generated by nvcc.Gravatar Benoit Steiner2016-02-03
|
* Disable stupid MSVC warningGravatar Gael Guennebaud2016-01-28
|
* Fix compilation of MKL support.Gravatar Gael Guennebaud2015-12-11
|
* Disable "decorated name length exceeded, name was truncated" MSVC warning.Gravatar Gael Guennebaud2015-11-23
|
* stop disabling this legitimate warning, recall that in the following the ↵Gravatar Gael Guennebaud2012-02-03
| | | | | | | const on FooRef is really meaningless: typedef Foo& FooRef; const FooRef foo;
* disable ICC 12 warning 279 - controlling expression is constantGravatar Benoit Jacob2011-03-06
|
* shut up a stupid clang 2.8 warningGravatar Benoit Jacob2011-02-27
|
* add EIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS non-default option. Use it in ↵Gravatar Benoit Jacob2011-02-22
| | | | our own CMakeLists. also add a include-guard-like mechanism to prevent doing unmatched #pragma warning push/pop.
* shut up stupid ICC warningsGravatar Benoit Jacob2011-02-22