1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[llvm][NFC] Add missing 'override'

This commit is contained in:
Logan Smith 2020-07-19 09:35:29 -07:00
parent 563c63fea8
commit 91df560a5c

View File

@ -289,7 +289,9 @@ public:
: RCResource(Flags),
OptStatements(std::make_unique<OptionalStmtList>(std::move(Stmts))) {}
virtual Error applyStmts(Visitor *V) const { return OptStatements->visit(V); }
Error applyStmts(Visitor *V) const override {
return OptStatements->visit(V);
}
};
// LANGUAGE statement. It can occur both as a top-level statement (in such