diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-10-14 19:15:48 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-10-14 19:15:48 +0000 |
commit | ed456eb0a95607ad8c0b1ed7fe69b193c5d837cb (patch) | |
tree | f7a127be4db5c7843d860bf0b1c75edc8b3b0afc /lldb/scripts/Python | |
parent | 44419bfd545d869ae7b9661b00c096fd65e425f6 (diff) | |
download | bcm5719-llvm-ed456eb0a95607ad8c0b1ed7fe69b193c5d837cb.tar.gz bcm5719-llvm-ed456eb0a95607ad8c0b1ed7fe69b193c5d837cb.zip |
Add SBWatchpoint::GetError() API, which is not currently populated as yet.
llvm-svn: 141979
Diffstat (limited to 'lldb/scripts/Python')
-rw-r--r-- | lldb/scripts/Python/interface/SBWatchpoint.i | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lldb/scripts/Python/interface/SBWatchpoint.i b/lldb/scripts/Python/interface/SBWatchpoint.i index 58a15e7d8d5..03e7edb3167 100644 --- a/lldb/scripts/Python/interface/SBWatchpoint.i +++ b/lldb/scripts/Python/interface/SBWatchpoint.i @@ -28,12 +28,15 @@ public: ~SBWatchpoint (); - watch_id_t - GetID (); - bool IsValid(); + SBError + GetError(); + + watch_id_t + GetID (); + %feature("docstring", " //------------------------------------------------------------------ /// With -1 representing an invalid hardware index. |