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:
parent
e1d9df224c
commit
d1fe7d2227
14 changed files with 64 additions and 64 deletions
|
@ -16,7 +16,7 @@ namespace electron {
|
|||
|
||||
class InspectableWebContentsDelegate {
|
||||
public:
|
||||
virtual ~InspectableWebContentsDelegate() {}
|
||||
virtual ~InspectableWebContentsDelegate() = default;
|
||||
|
||||
// Requested by WebContents of devtools.
|
||||
virtual void DevToolsReloadPage() {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue