Skip to content

Commit 24b4fec

Browse files
committed
Declare destructor of satcheck_glucose_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 93c9544 commit 24b4fec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/sat/satcheck_glucose.h

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

3535
tvt l_get(literalt a) const override;
3636

0 commit comments

Comments
 (0)