Removes nearly all warnings experienced with g++-8.3

Namely:
- unused parameter
- type qualifiers ignored ...
- catchinhg polymorphic type ... by value
This commit is contained in:
Markus Blatt
2019-04-12 13:26:33 +02:00
parent b562bef1af
commit 393a543ed5
13 changed files with 26 additions and 26 deletions

View File

@@ -30,7 +30,7 @@
#include <opm/msim/msim.hpp>
int main(int argc, char** argv) {
int main(int /* argc */, char** argv) {
std::string deck_file = argv[1];
Opm::Parser parser;
Opm::ParseContext parse_context;