[Lldb-commits] [lldb] r128136 - in /lldb/trunk: include/lldb/Interpreter/CommandObject.h source/Interpreter/CommandObject.cpp
Stephen Wilson
wilsons at start.ca
Tue Mar 22 19:12:10 PDT 2011
Author: wilsons
Date: Tue Mar 22 21:12:10 2011
New Revision: 128136
URL: http://llvm.org/viewvc/llvm-project?rev=128136&view=rev
Log:
Eliminate a pile of "type qualifiers ignored on function return type" warnings.
Modified:
lldb/trunk/include/lldb/Interpreter/CommandObject.h
lldb/trunk/source/Interpreter/CommandObject.cpp
Modified: lldb/trunk/include/lldb/Interpreter/CommandObject.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Interpreter/CommandObject.h?rev=128136&r1=128135&r2=128136&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Interpreter/CommandObject.h (original)
+++ lldb/trunk/include/lldb/Interpreter/CommandObject.h Tue Mar 22 21:12:10 2011
@@ -120,7 +120,7 @@
static const ArgumentTableEntry*
GetArgumentTable ();
- static const lldb::CommandArgumentType
+ static lldb::CommandArgumentType
LookupArgumentName (const char *arg_name);
static ArgumentTableEntry *
Modified: lldb/trunk/source/Interpreter/CommandObject.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandObject.cpp?rev=128136&r1=128135&r2=128136&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandObject.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandObject.cpp Tue Mar 22 21:12:10 2011
@@ -570,7 +570,7 @@
}
}
-const CommandArgumentType
+CommandArgumentType
CommandObject::LookupArgumentName (const char *arg_name)
{
CommandArgumentType return_type = eArgTypeLastArg;
More information about the lldb-commits
mailing list