diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-06-06 19:01:20 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-06-06 19:01:20 +0000 |
commit | 89b639e9a8978663b3558fc69c12486aa4bd4e53 (patch) | |
tree | 0debc9ffb359b0e0641ed55dec97ddba1ab55588 | |
parent | d5321247c4e2315d7aae3dd4c74da5babe3101a0 (diff) | |
download | bcm5719-llvm-89b639e9a8978663b3558fc69c12486aa4bd4e53.tar.gz bcm5719-llvm-89b639e9a8978663b3558fc69c12486aa4bd4e53.zip |
Update wording for the member field m_error.
llvm-svn: 158095
-rw-r--r-- | lldb/include/lldb/Breakpoint/Watchpoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/include/lldb/Breakpoint/Watchpoint.h b/lldb/include/lldb/Breakpoint/Watchpoint.h index 3b69b987205..1ccd8470fbd 100644 --- a/lldb/include/lldb/Breakpoint/Watchpoint.h +++ b/lldb/include/lldb/Breakpoint/Watchpoint.h @@ -115,7 +115,7 @@ private: void * m_callback_baton; // Callback user data to pass to callback std::string m_decl_str; // Declaration information, if any. std::string m_watch_spec_str; // Spec for the watchpoint (for future use). - Error m_error; // An error object describing errors creating watchpoint. + Error m_error; // An error object describing errors associated with this watchpoint. std::auto_ptr<ClangUserExpression> m_condition_ap; // The condition to test. |