1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

Warnings control to overpower the NVCC compiler

This commit is contained in:
paboyle 2018-01-24 13:24:36 +00:00
parent 918c105c57
commit 7331ee2d80

View File

@ -33,5 +33,13 @@ directory
//disables and intel compiler specific warning (in json.hpp)
#pragma warning disable 488
//disables nvcc specific warning in json.hpp
#pragma diag_suppress unsigned_compare_with_zero
#pragma diag_suppress cast_to_qualified_type
//disables nvcc specific warning in many files
#pragma diag_suppress esa_on_defaulted_function_ignored
#pragma diag_suppress extra_semicolon
//Eigen only
#endif