Skip to content

Commit bbf2781

Browse files
committed
[lldb] Reformat comment (NFC)
1 parent 7af61d5 commit bbf2781

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

lldb/include/lldb/Utility/Status.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,12 @@ class Status {
181181
bool Success() const;
182182

183183
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;
189190
private:
190191
explicit Status(const llvm::formatv_object_base &payload) {
191192
SetErrorToGenericError();

0 commit comments

Comments
 (0)