Skip to content

Commit

Permalink
Fix default destructor
Browse files Browse the repository at this point in the history
  • Loading branch information
ianhbell committed Jan 5, 2025
1 parent 97a9be0 commit e15bc25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/teqp/algorithms/iteration.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class StoppingCondition{
public:
virtual StoppingConditionReason stop(const StoppingData&) = 0;
virtual std::string desc() = 0;
virtual ~StoppingCondition = default;
virtual ~StoppingCondition() = default;
};

class MaxAbsErrorCondition : public StoppingCondition{
Expand Down

0 comments on commit e15bc25

Please sign in to comment.