We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7af61d5 commit bbf2781Copy full SHA for bbf2781
lldb/include/lldb/Utility/Status.h
@@ -181,11 +181,12 @@ class Status {
181
bool Success() const;
182
183
protected:
184
- /// Member variables
185
- ValueType m_code = 0; ///< Status code as an integer value.
186
- lldb::ErrorType m_type =
187
- lldb::eErrorTypeInvalid; ///< The type of the above error code.
188
- mutable std::string m_string; ///< A string representation of the error code.
+ /// Status code as an integer value.
+ ValueType m_code = 0;
+ /// The type of the above error code.
+ lldb::ErrorType m_type = lldb::eErrorTypeInvalid;
+ /// A string representation of the error code.
189
+ mutable std::string m_string;
190
private:
191
explicit Status(const llvm::formatv_object_base &payload) {
192
SetErrorToGenericError();
0 commit comments