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