Skip to content
Snippets Groups Projects
Commit bae35649 authored by Martin Bauer's avatar Martin Bauer
Browse files

generated sweeps for walberla: ignore intel shadow warnings

parent 594f6c3a
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,11 @@
# pragma GCC diagnostic ignored "-Wunused-variable"
#endif
#if ( defined WALBERLA_CXX_COMPILER_IS_INTEL )
#pragma warning push
#pragma warning( disable : 1599 )
#endif
using namespace std;
namespace walberla {
......@@ -84,3 +89,7 @@ void {{class_name}}::runOnCellInterval( const shared_ptr<StructuredBlockStorage>
#if ( defined WALBERLA_CXX_COMPILER_IS_GNU ) || ( defined WALBERLA_CXX_COMPILER_IS_CLANG )
# pragma GCC diagnostic pop
#endif
#if ( defined WALBERLA_CXX_COMPILER_IS_INTEL )
#pragma warning pop
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment