BaseOutputModule: remove unnecessary warning suppressions

This commit is contained in:
Arne Morten Kvarving 2024-08-07 09:05:36 +02:00
parent e5843a46ae
commit 7f623137df

View File

@ -55,12 +55,6 @@ struct FluidSystem;
namespace Opm {
#if __GNUC__ || __clang__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpragmas"
#pragma GCC diagnostic ignored "-Wformat-nonliteral"
#endif
/*!
* \brief The base class for writer modules.
*
@ -440,10 +434,6 @@ protected:
const Simulator& simulator_;
};
#if __GNUC__ || __clang__
#pragma GCC diagnostic pop
#endif
} // namespace Opm
#endif