Skip to content
Snippets Groups Projects
Commit 665ae756 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[Mat] semicolon after OGS_FATAL is mandatory now.

parent 6df83f2d
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ int main(int argc, char* argv[]) ...@@ -133,7 +133,7 @@ int main(int argc, char* argv[])
std::ofstream os(name); std::ofstream os(name);
if (!os) if (!os)
OGS_FATAL("Couldn't open file '%s' for writing.", OGS_FATAL("Couldn't open file '%s' for writing.",
name.c_str()) name.c_str());
for (std::size_t n(0); n < number; ++n) for (std::size_t n(0); n < number; ++n)
os << "0\n"; os << "0\n";
}; };
......
...@@ -28,7 +28,7 @@ public: ...@@ -28,7 +28,7 @@ public:
double getReactionRate(const double /*p_Ads*/, const double /*T_Ads*/, const double /*M_Ads*/, double getReactionRate(const double /*p_Ads*/, const double /*T_Ads*/, const double /*M_Ads*/,
const double /*loading*/) const override const double /*loading*/) const override
{ {
OGS_FATAL("Method getReactionRate() should never be called directly") OGS_FATAL("Method getReactionRate() should never be called directly");
} }
}; };
......
...@@ -46,7 +46,7 @@ Eigen::MatrixXd createPermeabilityModel(BaseLib::ConfigTree const& config) ...@@ -46,7 +46,7 @@ Eigen::MatrixXd createPermeabilityModel(BaseLib::ConfigTree const& config)
default: default:
{ {
OGS_FATAL( OGS_FATAL(
"Number of values for permeability tensor must be 1, 4 or 9.") "Number of values for permeability tensor must be 1, 4 or 9.");
} }
} }
......
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