Skip to content

Commit ad235f8

Browse files
authored
Fix missing override on XnnpackBackend destructor
Differential Revision: D97373597 Pull Request resolved: #18389
1 parent 9c5cf60 commit ad235f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backends/xnnpack/runtime/XNNPACKBackend.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ using executorch::runtime::Span;
4444
class XnnpackBackend final
4545
: public ::executorch::ET_RUNTIME_NAMESPACE::BackendInterface {
4646
public:
47-
~XnnpackBackend() = default;
47+
~XnnpackBackend() override = default;
4848

4949
XnnpackBackend() {
5050
// Initialize XNNPACK

0 commit comments

Comments
 (0)