Skip to content
Snippets Groups Projects
Commit 0eb846e4 authored by Andreas Salzburger's avatar Andreas Salzburger Committed by Andreas Salzburger
Browse files

fixing one more noexcept(false)

parent d7936e49
No related branches found
No related tags found
1 merge request!789Consistent storage and access schema for bounds
......@@ -131,7 +131,7 @@ class ConvexPolygonBounds : public ConvexPolygonBoundsBase {
/// Return whether this bounds class is in fact convex
/// throws a log error if not
void checkConsistency() const throw(std::logic_error);
void checkConsistency() const noexcept(false);
};
/// Tag to trigger specialization of a dynamic polygon
......@@ -198,7 +198,7 @@ class ConvexPolygonBounds<PolygonDynamic> : public ConvexPolygonBoundsBase {
/// Return whether this bounds class is in fact convex
/// thorws a logic error if not
void checkConsistency() const throw(std::logic_error);
void checkConsistency() const noexcept(false);
};
} // namespace Acts
......
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