Merge pull request #3672 from bska/remove-extra-semicolon
Remove Unnecessary Semicolons on Closing Braces
This commit is contained in:
@@ -122,6 +122,6 @@ public:
|
||||
|
||||
};
|
||||
|
||||
}; // namespace Opm
|
||||
} // namespace Opm
|
||||
|
||||
#endif // LBC_HPP
|
||||
|
||||
@@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user