File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
interpolation/method/sphericalvector Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 1616ATLAS_SUPPRESS_WARNINGS_PUSH
1717ATLAS_SUPPRESS_WARNINGS_INTEGER_SIGN_CHANGE
1818ATLAS_SUPPRESS_WARNINGS_CODE_IS_UNREACHABLE
19+ ATLAS_SUPPRESS_WARNINGS_UNUSED_BUT_SET_VARIABLE
1920#include < Eigen/Sparse>
2021ATLAS_SUPPRESS_WARNINGS_POP
2122#endif
Original file line number Diff line number Diff line change 6262# define ATLAS_SUPPRESS_WARNINGS_POP _Pragma( "diag pop" )
6363# define ATLAS_SUPPRESS_WARNINGS_INTEGER_SIGN_CHANGE _Pragma( "diag_suppress integer_sign_change" )
6464# define ATLAS_SUPPRESS_WARNINGS_CODE_IS_UNREACHABLE _Pragma( "diag_suppress code_is_unreachable" )
65+ #elif defined(__INTEL_LLVM_COMPILER )
66+ # define ATLAS_SUPPRESS_WARNINGS_PUSH _Pragma( "clang diagnostic push")
67+ # define ATLAS_SUPPRESS_WARNINGS_POP _Pragma( "clang diagnostic pop" )
68+ # define ATLAS_SUPPRESS_WARNINGS_UNUSED_BUT_SET_VARIABLE _Pragma( "clang diagnostic ignored \"-Wunused-but-set-variable\"")
6569#elif defined(__INTEL_COMPILER )
6670# define ATLAS_SUPPRESS_WARNINGS_PUSH _Pragma( "warning push" )
6771# define ATLAS_SUPPRESS_WARNINGS_POP _Pragma( "warning pop" )
9094#if !defined(ATLAS_SUPPRESS_WARNINGS_TEMPLATE_ID_CDTOR )
9195# define ATLAS_SUPPRESS_WARNINGS_TEMPLATE_ID_CDTOR
9296#endif
97+ #if !defined(ATLAS_SUPPRESS_WARNINGS_UNUSED_BUT_SET_VARIABLE )
98+ # define ATLAS_SUPPRESS_WARNINGS_UNUSED_BUT_SET_VARIABLE
99+ #endif
93100
94101#endif
Original file line number Diff line number Diff line change 2020ATLAS_SUPPRESS_WARNINGS_PUSH
2121ATLAS_SUPPRESS_WARNINGS_INTEGER_SIGN_CHANGE
2222ATLAS_SUPPRESS_WARNINGS_CODE_IS_UNREACHABLE
23+ ATLAS_SUPPRESS_WARNINGS_UNUSED_BUT_SET_VARIABLE
2324#include < Eigen/Sparse>
2425ATLAS_SUPPRESS_WARNINGS_POP
2526#endif
You can’t perform that action at this time.
0 commit comments