Fixed build error of LLDBWrapPython.cpp by removing the "protected" access modifier.

llvm-svn: 114194
This commit is contained in:
Johnny Chen 2010-09-17 18:39:57 +00:00
parent afeb03b41d
commit aec0c322d3
2 changed files with 2 additions and 4 deletions

View File

@ -36,7 +36,7 @@ public:
AppendList (const char **strv, int strc);
void
AppendList (lldb::SBStringList strings);
AppendList (const lldb::SBStringList &strings);
uint32_t
GetSize () const;
@ -47,8 +47,6 @@ public:
void
Clear ();
protected:
#ifndef SWIG
const lldb_private::StringList *

View File

@ -94,7 +94,7 @@ SBStringList::AppendList (const char **strv, int strc)
}
void
SBStringList::AppendList (SBStringList strings)
SBStringList::AppendList (const SBStringList &strings)
{
if (strings.IsValid())
{