Skip to content
Snippets Groups Projects
Commit 28c5b79f authored by Timo Koch's avatar Timo Koch
Browse files

[linear] Suppress superfluous deprecation warnings

parent e6d0a112
No related branches found
No related tags found
1 merge request!3465[linear][istlsolvers] Improve parameter handling and allow setting a matrix operator for reuse
...@@ -29,6 +29,10 @@ ...@@ -29,6 +29,10 @@
#warning "This header is deprecated and will be removed after release 3.7." #warning "This header is deprecated and will be removed after release 3.7."
#endif #endif
// suppress all secondary deprecation warning from this deprecated file
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
namespace Dumux { namespace Dumux {
//! The default //! The default
...@@ -83,4 +87,6 @@ struct linearSolverAcceptsMultiTypeMatrix<UMFPackBackend> : public std::false_ty ...@@ -83,4 +87,6 @@ struct linearSolverAcceptsMultiTypeMatrix<UMFPackBackend> : public std::false_ty
} // end namespace Dumux } // end namespace Dumux
#pragma GCC diagnostic pop
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment