File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
lldb/include/lldb/Utility Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -181,11 +181,12 @@ class Status {
181
181
bool Success () const ;
182
182
183
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.
184
+ // / Status code as an integer value.
185
+ ValueType m_code = 0 ;
186
+ // / The type of the above error code.
187
+ lldb::ErrorType m_type = lldb::eErrorTypeInvalid;
188
+ // / A string representation of the error code.
189
+ mutable std::string m_string;
189
190
private:
190
191
explicit Status (const llvm::formatv_object_base &payload) {
191
192
SetErrorToGenericError ();
You can’t perform that action at this time.
0 commit comments