summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-modernize/Core/IncludeDirectives.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang-tools-extra/clang-modernize/Core/IncludeDirectives.cpp')
-rw-r--r--clang-tools-extra/clang-modernize/Core/IncludeDirectives.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang-tools-extra/clang-modernize/Core/IncludeDirectives.cpp b/clang-tools-extra/clang-modernize/Core/IncludeDirectives.cpp
index 2b25e2fd4b0..8ad1dc58f48 100644
--- a/clang-tools-extra/clang-modernize/Core/IncludeDirectives.cpp
+++ b/clang-tools-extra/clang-modernize/Core/IncludeDirectives.cpp
@@ -178,7 +178,7 @@ private:
}
}
- virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) override {
+ void Endif(SourceLocation Loc, SourceLocation IfLoc) override {
Guard->Count++;
// If it's the #endif corresponding to the top-most #ifndef
@@ -220,7 +220,7 @@ private:
const MacroDirective *) override {
Guard->Count++;
}
- virtual void Else(SourceLocation, SourceLocation) override {
+ void Else(SourceLocation, SourceLocation) override {
Guard->Count++;
}
OpenPOWER on IntegriCloud