@@ -76,14 +76,12 @@ class Watchpoint : public std::enable_shared_from_this<Watchpoint>,
76
76
77
77
bool WatchpointRead () const ;
78
78
bool WatchpointWrite () const ;
79
- bool WatchpointModify () const ;
80
79
uint32_t GetIgnoreCount () const ;
81
80
void SetIgnoreCount (uint32_t n);
82
81
void SetWatchpointType (uint32_t type, bool notify = true );
83
82
void SetDeclInfo (const std::string &str);
84
83
std::string GetWatchSpec ();
85
84
void SetWatchSpec (const std::string &str);
86
- bool WatchedValueReportable (const ExecutionContext &exe_ctx);
87
85
88
86
// Snapshot management interface.
89
87
bool IsWatchVariable () const ;
@@ -214,8 +212,7 @@ class Watchpoint : public std::enable_shared_from_this<Watchpoint>,
214
212
// again, we check the count, if it is more than 1, it means the user-
215
213
// supplied actions actually want the watchpoint to be disabled!
216
214
uint32_t m_watch_read : 1 , // 1 if we stop when the watched data is read from
217
- m_watch_write : 1 , // 1 if we stop when the watched data is written to
218
- m_watch_modify : 1 ; // 1 if we stop when the watched data is changed
215
+ m_watch_write : 1 ; // 1 if we stop when the watched data is written to
219
216
uint32_t m_ignore_count; // Number of times to ignore this watchpoint
220
217
std::string m_decl_str; // Declaration information, if any.
221
218
std::string m_watch_spec_str; // Spec for the watchpoint.
0 commit comments