summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-modernize/Core/Transform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang-tools-extra/clang-modernize/Core/Transform.cpp')
-rw-r--r--clang-tools-extra/clang-modernize/Core/Transform.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang-tools-extra/clang-modernize/Core/Transform.cpp b/clang-tools-extra/clang-modernize/Core/Transform.cpp
index 6052bfb812f..41a7d4546c9 100644
--- a/clang-tools-extra/clang-modernize/Core/Transform.cpp
+++ b/clang-tools-extra/clang-modernize/Core/Transform.cpp
@@ -39,7 +39,7 @@ public:
ActionFactory(MatchFinder &Finder, Transform &Owner)
: Finder(Finder), Owner(Owner) {}
- virtual FrontendAction *create() override {
+ FrontendAction *create() override {
return new FactoryAdaptor(Finder, Owner);
}
@@ -62,7 +62,7 @@ private:
return Owner.handleBeginSource(CI, Filename);
}
- virtual void EndSourceFileAction() override {
+ void EndSourceFileAction() override {
Owner.handleEndSource();
return ASTFrontendAction::EndSourceFileAction();
}
OpenPOWER on IntegriCloud