[Lldb-commits] [lldb] [lldb] Convert doxygen comments in lldb-enumerations.h (NFC) (PR #203079)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 10 13:03:13 PDT 2026
================
@@ -311,37 +343,59 @@ enum SearchDepth {
/// Connection Status Types.
enum ConnectionStatus {
- eConnectionStatusSuccess, ///< Success
- eConnectionStatusEndOfFile, ///< End-of-file encountered
- eConnectionStatusError, ///< Check GetError() for details
- eConnectionStatusTimedOut, ///< Request timed out
- eConnectionStatusNoConnection, ///< No connection
- eConnectionStatusLostConnection, ///< Lost connection while connected to a
- ///< valid connection
- eConnectionStatusInterrupted ///< Interrupted read
+ /// Success
+ eConnectionStatusSuccess,
+ /// End-of-file encountered
+ eConnectionStatusEndOfFile,
+ /// Check GetError() for details
+ eConnectionStatusError,
+ /// Request timed out
+ eConnectionStatusTimedOut,
+ /// No connection
+ eConnectionStatusNoConnection,
+ /// Lost connection while connected to a
+ /// valid connection
----------------
JDevlieghere wrote:
This can/should be reflowed.
https://github.com/llvm/llvm-project/pull/203079
More information about the lldb-commits
mailing list