diff options
author | Ed Maste <emaste@FreeBSD.org> | 2014-11-25 21:00:58 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2014-11-25 21:00:58 +0000 |
commit | 0cac4ca3916ac24ab6139d03cbfd18db9e715bfe (patch) | |
tree | c94307da318be46e5aeea1a325c1e91749506e4f /include/lldb/Core/Error.h | |
parent | 03b99097822ca3ac69252d9afae716a584ed56c4 (diff) |
Diffstat (limited to 'include/lldb/Core/Error.h')
-rw-r--r-- | include/lldb/Core/Error.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/lldb/Core/Error.h b/include/lldb/Core/Error.h index 39c67f621c92..a1687689fc3f 100644 --- a/include/lldb/Core/Error.h +++ b/include/lldb/Core/Error.h @@ -209,6 +209,13 @@ public: void SetMachError (uint32_t err); + + void + SetExpressionError (lldb::ExpressionResults, const char *mssg); + + int + SetExpressionErrorWithFormat (lldb::ExpressionResults, const char *format, ...) __attribute__ ((format (printf, 3,4))); + //------------------------------------------------------------------ /// Set accesssor with an error value and type. /// @@ -301,7 +308,7 @@ protected: /// Member variables //------------------------------------------------------------------ ValueType m_code; ///< Error code as an integer value. - lldb::ErrorType m_type; ///< The type of the above error code. + lldb::ErrorType m_type; ///< The type of the above error code. mutable std::string m_string; ///< A string representation of the error code. }; |