Remove redundant virtual from member functions marked 'override'.
authorDavid Blaikie <dblaikie@gmail.com>
Wed, 8 Apr 2015 17:00:56 +0000 (17:00 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Wed, 8 Apr 2015 17:00:56 +0000 (17:00 +0000)
llvm-svn: 234416

clang-tools-extra/clang-modernize/AddOverride/AddOverride.h
clang-tools-extra/clang-modernize/LoopConvert/LoopConvert.h
clang-tools-extra/clang-modernize/PassByValue/PassByValue.h
clang-tools-extra/clang-modernize/PassByValue/PassByValueActions.h
clang-tools-extra/clang-modernize/ReplaceAutoPtr/ReplaceAutoPtr.h
clang-tools-extra/clang-modernize/ReplaceAutoPtr/ReplaceAutoPtrActions.h
clang-tools-extra/clang-modernize/UseAuto/UseAuto.h
clang-tools-extra/clang-modernize/UseAuto/UseAutoActions.h
clang-tools-extra/clang-modernize/UseNullptr/UseNullptr.h

index 9c3453d..f16976a 100644 (file)
@@ -31,11 +31,11 @@ public:
       : Transform("AddOverride", Options) {}
 
   /// \see Transform::run().
-  virtual int apply(const clang::tooling::CompilationDatabase &Database,
-                    const std::vector<std::string> &SourcePaths) override;
+  int apply(const clang::tooling::CompilationDatabase &Database,
+            const std::vector<std::string> &SourcePaths) override;
 
-  virtual bool handleBeginSource(clang::CompilerInstance &CI,
-                                 llvm::StringRef Filename) override;
+  bool handleBeginSource(clang::CompilerInstance &CI,
+                         llvm::StringRef Filename) override;
 
 private:
   AddOverrideFixer *Fixer;
index 1121b65..ac49792 100644 (file)
@@ -31,11 +31,12 @@ public:
       : Transform("LoopConvert", Options) {}
 
   /// \see Transform::run().
-  virtual int apply(const clang::tooling::CompilationDatabase &Database,
-                    const std::vector<std::string> &SourcePaths) override;
+  int apply(const clang::tooling::CompilationDatabase &Database,
+            const std::vector<std::string> &SourcePaths) override;
+
+  bool handleBeginSource(clang::CompilerInstance &CI,
+                         llvm::StringRef Filename) override;
 
-  virtual bool handleBeginSource(clang::CompilerInstance &CI,
-                                 llvm::StringRef Filename) override;
 private:
   std::unique_ptr<TUTrackingInfo> TUInfo;
 };
index a8e6ebd..e73883d 100644 (file)
@@ -58,13 +58,13 @@ public:
       : Transform("PassByValue", Options), Replacer(nullptr) {}
 
   /// \see Transform::apply().
-  virtual int apply(const clang::tooling::CompilationDatabase &Database,
-                    const std::vector<std::string> &SourcePaths) override;
+  int apply(const clang::tooling::CompilationDatabase &Database,
+            const std::vector<std::string> &SourcePaths) override;
 
 private:
   /// \brief Setups the \c IncludeDirectives for the replacer.
-  virtual bool handleBeginSource(clang::CompilerInstance &CI,
-                                 llvm::StringRef Filename) override;
+  bool handleBeginSource(clang::CompilerInstance &CI,
+                         llvm::StringRef Filename) override;
 
   std::unique_ptr<IncludeDirectives> IncludeManager;
   ConstructorParamReplacer *Replacer;
index c31937a..be030a7 100644 (file)
@@ -62,8 +62,8 @@ public:
 
 private:
   /// \brief Entry point to the callback called when matches are made.
-  virtual void run(const clang::ast_matchers::MatchFinder::MatchResult &Result)
-      override;
+  void
+  run(const clang::ast_matchers::MatchFinder::MatchResult &Result) override;
 
   unsigned &AcceptedChanges;
   unsigned &RejectedChanges;
index 1d3948c..48d31dd 100644 (file)
@@ -47,8 +47,8 @@ public:
       : Transform("ReplaceAutoPtr", Options) {}
 
   /// \see Transform::run().
-  virtual int apply(const clang::tooling::CompilationDatabase &Database,
-                    const std::vector<std::string> &SourcePaths) override;
+  int apply(const clang::tooling::CompilationDatabase &Database,
+            const std::vector<std::string> &SourcePaths) override;
 };
 
 #endif // CLANG_MODERNIZE_REPLACE_AUTO_PTR_H
index fbe5518..c77287e 100644 (file)
@@ -29,8 +29,8 @@ public:
       : AcceptedChanges(AcceptedChanges), Owner(Owner) {}
 
   /// \brief Entry point to the callback called when matches are made.
-  virtual void run(const clang::ast_matchers::MatchFinder::MatchResult &Result)
-      override;
+  void
+  run(const clang::ast_matchers::MatchFinder::MatchResult &Result) override;
 
 private:
   /// \brief Locates the \c auto_ptr token when it is referred by a \c TypeLoc.
@@ -88,8 +88,8 @@ public:
       : AcceptedChanges(AcceptedChanges), Owner(Owner) {}
 
   /// \brief Entry point to the callback called when matches are made.
-  virtual void run(const clang::ast_matchers::MatchFinder::MatchResult &Result)
-      override;
+  void
+  run(const clang::ast_matchers::MatchFinder::MatchResult &Result) override;
 
 private:
   unsigned &AcceptedChanges;
index 8fe6d83..9dc5d00 100644 (file)
@@ -34,8 +34,8 @@ public:
       : Transform("UseAuto", Options) {}
 
   /// \see Transform::run().
-  virtual int apply(const clang::tooling::CompilationDatabase &Database,
-                    const std::vector<std::string> &SourcePaths) override;
+  int apply(const clang::tooling::CompilationDatabase &Database,
+            const std::vector<std::string> &SourcePaths) override;
 };
 
 #endif // CLANG_MODERNIZE_USE_AUTO_H
index 048d759..fdaa84f 100644 (file)
@@ -29,8 +29,8 @@ public:
       : AcceptedChanges(AcceptedChanges), Owner(Owner) {}
 
   /// \brief Entry point to the callback called when matches are made.
-  virtual void run(const clang::ast_matchers::MatchFinder::MatchResult &Result)
-      override;
+  void
+  run(const clang::ast_matchers::MatchFinder::MatchResult &Result) override;
 
 private:
   unsigned &AcceptedChanges;
@@ -45,8 +45,8 @@ public:
       : AcceptedChanges(AcceptedChanges), Owner(Owner) {}
 
   /// \brief Entry point to the callback called when matches are made.
-  virtual void run(const clang::ast_matchers::MatchFinder::MatchResult &Result)
-      override;
+  void
+  run(const clang::ast_matchers::MatchFinder::MatchResult &Result) override;
 
 private:
   unsigned &AcceptedChanges;
index 7811e8f..a7e35cf 100644 (file)
@@ -28,8 +28,8 @@ public:
       : Transform("UseNullptr", Options) {}
 
   /// \see Transform::run().
-  virtual int apply(const clang::tooling::CompilationDatabase &Database,
-                    const std::vector<std::string> &SourcePaths) override;
+  int apply(const clang::tooling::CompilationDatabase &Database,
+            const std::vector<std::string> &SourcePaths) override;
 };
 
 #endif // CLANG_MODERNIZE_USE_NULLPTR_H