fix: modernize-use-equals-default warnings (#44946)

fix: use '= default' to define a trivial destructor [modernize-use-equals-default]

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Charles Kerr <charles@charleskerr.com>
This commit is contained in:
trop[bot] 2024-12-03 21:19:47 -06:00 committed by GitHub
parent e1d9df224c
commit d1fe7d2227
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 64 additions and 64 deletions

View file

@ -43,7 +43,7 @@ class Delegate {
const std::string& update_url) {}
protected:
virtual ~Delegate() {}
virtual ~Delegate() = default;
};
class AutoUpdater {