[clang-tidy] use override instead of virtual

Found with modernize-use-override

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2020-01-31 19:37:53 -08:00
parent 0b2444450f
commit b64fdae938
38 changed files with 56 additions and 56 deletions

View File

@@ -54,7 +54,7 @@ public:
class MyArchiveVisitor final : public ArchiveVisitor {
public:
virtual void VisitArchiveEntry(const char *path_utf8) override {
void VisitArchiveEntry(const char *path_utf8) override {
printf("%s\n", path_utf8);
}
};