More override warning cleanup.
authorEric Christopher <echristo@gmail.com>
Tue, 18 Nov 2014 22:40:27 +0000 (22:40 +0000)
committerEric Christopher <echristo@gmail.com>
Tue, 18 Nov 2014 22:40:27 +0000 (22:40 +0000)
llvm-svn: 222271

lldb/source/Commands/CommandObjectCommands.cpp

index d23394e..c0503ae 100644 (file)
@@ -963,7 +963,7 @@ protected:
     }
 
     bool
-    DoExecute (Args& command, CommandReturnObject &result)
+    DoExecute (Args& command, CommandReturnObject &result) override
     {
         const size_t argc = command.GetArgumentCount();
         if (argc == 0)
@@ -1222,8 +1222,8 @@ private:
          std::string m_syntax;
      };
           
-     virtual Options *
-     GetOptions ()
+     Options *
+     GetOptions () override
      {
          return &m_options;
      }