diff options
author | Stephen Wilson <wilsons@start.ca> | 2011-03-23 02:12:10 +0000 |
---|---|---|
committer | Stephen Wilson <wilsons@start.ca> | 2011-03-23 02:12:10 +0000 |
commit | 0c16aa6d39be6e37b7c8c86416a261cbb0c55bd1 (patch) | |
tree | eab4203ded5a6f8b83e7407c0db540c4ade0dbdd /lldb/source/Interpreter/CommandObject.cpp | |
parent | e9b1491d49b3d9691a58ba58652aa936839ed33a (diff) | |
download | bcm5719-llvm-0c16aa6d39be6e37b7c8c86416a261cbb0c55bd1.tar.gz bcm5719-llvm-0c16aa6d39be6e37b7c8c86416a261cbb0c55bd1.zip |
Eliminate a pile of "type qualifiers ignored on function return type" warnings.
llvm-svn: 128136
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index 6503e29d5e6..7cdf36dcfe0 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -570,7 +570,7 @@ CommandObject::GetFormattedCommandArguments (Stream &str) } } -const CommandArgumentType +CommandArgumentType CommandObject::LookupArgumentName (const char *arg_name) { CommandArgumentType return_type = eArgTypeLastArg; |