Skip to content

Commit

Permalink
Add missing semicolon to Assert macros
Browse files Browse the repository at this point in the history
  • Loading branch information
davidscn committed Oct 30, 2023
1 parent 0ac98e1 commit 6955b67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion elasticity.cc
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ main(int argc, char **argv)
elastic_solver.run();
}
else
AssertThrow(false, ExcNotImplemented())
AssertThrow(false, ExcNotImplemented());
}
catch (std::exception &exc)
{
Expand Down
2 changes: 1 addition & 1 deletion source/nonlinear_elasticity/nonlinear_elasticity.cc
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ namespace Nonlinear_Elasticity
AssertThrow(false,
ExcMessage("Unknown boundary id, did "
"you set a boundary "
"condition?"))
"condition?"));
}
// Check, whether the given IDs are mutually exclusive
AssertThrow(
Expand Down

0 comments on commit 6955b67

Please sign in to comment.