fix 'const const' typo introduced in r172647

llvm-svn: 172724
This commit is contained in:
Daniel Malea 2013-01-17 15:05:55 +00:00
parent 709d0dac81
commit c85a058ce0
1 changed files with 3 additions and 3 deletions

View File

@ -84,11 +84,11 @@ public:
void** pyfunct_wrapper,
std::string& retval);
typedef void* (*SWIGPythonCreateSyntheticProvider) (const const char *python_class_name,
typedef void* (*SWIGPythonCreateSyntheticProvider) (const char *python_class_name,
const char *session_dictionary_name,
const lldb::ValueObjectSP& valobj_sp);
typedef void* (*SWIGPythonCreateOSPlugin) (const const char *python_class_name,
typedef void* (*SWIGPythonCreateOSPlugin) (const char *python_class_name,
const char *session_dictionary_name,
const lldb::ProcessSP& process_sp);
@ -107,7 +107,7 @@ public:
std::string& err_msg,
lldb_private::CommandReturnObject& cmd_retobj);
typedef bool (*SWIGPythonCallModuleInit) (const const char *python_module_name,
typedef bool (*SWIGPythonCallModuleInit) (const char *python_module_name,
const char *session_dictionary_name,
lldb::DebuggerSP& debugger);