diff options
author | Eric Christopher <echristo@gmail.com> | 2014-11-18 22:40:27 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-11-18 22:40:27 +0000 |
commit | b0a1814ff3b5401f15af0ec55ca6e8582a4fd2be (patch) | |
tree | a1beac7420ed732f5e6982c6a4705c01678e4353 /lldb/source/Commands/CommandObjectCommands.cpp | |
parent | e16d16ae4182ee44d1cf2ac27566fdc7726528b5 (diff) | |
download | llvm-b0a1814ff3b5401f15af0ec55ca6e8582a4fd2be.zip llvm-b0a1814ff3b5401f15af0ec55ca6e8582a4fd2be.tar.gz llvm-b0a1814ff3b5401f15af0ec55ca6e8582a4fd2be.tar.bz2 |
More override warning cleanup.
llvm-svn: 222271
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectCommands.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp index d23394e..c0503ae 100644 --- a/lldb/source/Commands/CommandObjectCommands.cpp +++ b/lldb/source/Commands/CommandObjectCommands.cpp @@ -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; } |