diff options
Diffstat (limited to 'lldb/scripts/Python/interface/SBValue.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBValue.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/scripts/Python/interface/SBValue.i b/lldb/scripts/Python/interface/SBValue.i index 9b9fd529de8..4b9d5d727b4 100644 --- a/lldb/scripts/Python/interface/SBValue.i +++ b/lldb/scripts/Python/interface/SBValue.i @@ -313,14 +313,14 @@ public: /// It returns an SBWatchpoint, which may be invalid. ") Watch; lldb::SBWatchpoint - Watch (bool resolve_location, bool read, bool write); + Watch (bool resolve_location, bool read, bool write, SBError &error); %feature("docstring", " /// Find and watch the location pointed to by a variable. /// It returns an SBWatchpoint, which may be invalid. ") WatchPointee; lldb::SBWatchpoint - WatchPointee (bool resolve_location, bool read, bool write); + WatchPointee (bool resolve_location, bool read, bool write, SBError &error); bool GetDescription (lldb::SBStream &description); |