commit | 5d3bca4ec3347d5100b071ba7c5c637f522a014b | [log] [tgz] |
---|---|---|
author | Jim Ingham <jingham@apple.com> | Mon Dec 19 20:39:44 2011 +0000 |
committer | Jim Ingham <jingham@apple.com> | Mon Dec 19 20:39:44 2011 +0000 |
tree | 3a4d703e63d545326f2ee037a9bb58cfc1f69685 | |
parent | 37c45db1894f489e28b8cf88b5e5c162ec1c34a8 [diff] |
Add needed Clear methods. <rdar://problem/10596340> llvm-svn: 146902
diff --git a/lldb/scripts/Python/interface/SBModule.i b/lldb/scripts/Python/interface/SBModule.i index 01bf470..08e5c18 100644 --- a/lldb/scripts/Python/interface/SBModule.i +++ b/lldb/scripts/Python/interface/SBModule.i
@@ -103,6 +103,9 @@ bool IsValid () const; + void + Clear(); + %feature("docstring", " //------------------------------------------------------------------ /// Get const accessor for the module file specification.
diff --git a/lldb/scripts/Python/interface/SBValue.i b/lldb/scripts/Python/interface/SBValue.i index a1ab884..a9878a2 100644 --- a/lldb/scripts/Python/interface/SBValue.i +++ b/lldb/scripts/Python/interface/SBValue.i
@@ -67,6 +67,9 @@ bool IsValid(); + void + Clear(); + SBError GetError();
diff --git a/lldb/scripts/Python/interface/SBValueList.i b/lldb/scripts/Python/interface/SBValueList.i index 75c8f6b..afd4891 100644 --- a/lldb/scripts/Python/interface/SBValueList.i +++ b/lldb/scripts/Python/interface/SBValueList.i
@@ -78,6 +78,9 @@ bool IsValid() const; + + void + Clear(); void Append (const lldb::SBValue &val_obj);