Merge pull request #3672 from bska/remove-extra-semicolon

Remove Unnecessary Semicolons on Closing Braces
This commit is contained in:
Atgeirr Flø Rasmussen
2023-09-11 17:54:20 +02:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -122,6 +122,6 @@ public:
};
}; // namespace Opm
} // namespace Opm
#endif // LBC_HPP

View File

@@ -123,7 +123,7 @@ struct Builtin {
for (const auto& kw: keywords)
{
newHeader << fmt::format(" const ::Opm::ParserKeyword get_{0}();\n",kw.className());
source << fmt::format("const ::Opm::ParserKeyword Builtin::get_{0}() {{ return {0}(); }};\n",kw.className());
source << fmt::format("const ::Opm::ParserKeyword Builtin::get_{0}() {{ return {0}(); }}\n",kw.className());
}
}

View File

@@ -92,7 +92,7 @@ int EInit::get_array_index(const std::string& name, const std::string& grid_name
return lgr_array_index[lgr_index].at(name);
}
};
}
int EInit::activeCells(const std::string& grid_name) const
{