diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-09-17 18:39:57 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-09-17 18:39:57 +0000 |
| commit | aec0c322d38d10a4e5f5bc563d1bf9ec2b7389c7 (patch) | |
| tree | f9aabd5f9d5cc9ed3d584c79aba2855533510c78 /lldb/source/API | |
| parent | afeb03b41deb1580cf87eea614ea4be4624b5cdc (diff) | |
| download | llvm-aec0c322d38d10a4e5f5bc563d1bf9ec2b7389c7.tar.gz llvm-aec0c322d38d10a4e5f5bc563d1bf9ec2b7389c7.tar.bz2 llvm-aec0c322d38d10a4e5f5bc563d1bf9ec2b7389c7.zip | |
Fixed build error of LLDBWrapPython.cpp by removing the "protected" access modifier.
llvm-svn: 114194
Diffstat (limited to 'lldb/source/API')
| -rw-r--r-- | lldb/source/API/SBStringList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBStringList.cpp b/lldb/source/API/SBStringList.cpp index f15200061f62..beb760632faf 100644 --- a/lldb/source/API/SBStringList.cpp +++ b/lldb/source/API/SBStringList.cpp @@ -94,7 +94,7 @@ SBStringList::AppendList (const char **strv, int strc) } void -SBStringList::AppendList (SBStringList strings) +SBStringList::AppendList (const SBStringList &strings) { if (strings.IsValid()) { |
