forked from OSchip/llvm-project
Fixed build error of LLDBWrapPython.cpp by removing the "protected" access modifier.
llvm-svn: 114194
This commit is contained in:
parent
afeb03b41d
commit
aec0c322d3
|
@ -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 *
|
||||
|
|
|
@ -94,7 +94,7 @@ SBStringList::AppendList (const char **strv, int strc)
|
|||
}
|
||||
|
||||
void
|
||||
SBStringList::AppendList (SBStringList strings)
|
||||
SBStringList::AppendList (const SBStringList &strings)
|
||||
{
|
||||
if (strings.IsValid())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue