Skip to content

Commit e7b6d76

Browse files
committed
Declare destructor of satcheck_minisat2_baset using override
Because this matches the current coding standards, removes a warning from clang-tidy and points out that this is overriding a base class destructor.
1 parent 2a43b15 commit e7b6d76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/sat/satcheck_minisat2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class satcheck_minisat2_baset : public cnf_solvert, public hardness_collectort
3030
{
3131
public:
3232
explicit satcheck_minisat2_baset(message_handlert &message_handler);
33-
virtual ~satcheck_minisat2_baset();
33+
~satcheck_minisat2_baset() override;
3434

3535
tvt l_get(literalt a) const override final;
3636

0 commit comments

Comments
 (0)