Skip to content

Commit 207a46c

Browse files
committed
Remove \class from doxygen comments and correct PipeFD comment
1 parent a06d074 commit 207a46c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/include/llvm/Support/raw_socket_stream.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ class WSABalancer {
3535
};
3636
#endif // _WIN32
3737

38-
/// \class ListeningSocket
3938
/// Manages a passive (i.e., listening) UNIX domain socket
4039
///
4140
/// The ListeningSocket class encapsulates a UNIX domain socket that can listen
@@ -66,7 +65,7 @@ class ListeningSocket {
6665
/// file descriptor (FD) could be closed while ::poll is waiting for it to be
6766
/// ready to perform a I/O operations. ::poll will continue to block even
6867
/// after FD is closed so use a self-pipe mechanism to get ::poll to return
69-
int PipeFD[2]; // Not modified after construction other then deconstructor
68+
int PipeFD[2]; // Not modified after construction other then move constructor
7069

7170
ListeningSocket(int SocketFD, StringRef SocketPath, int PipeFD[2]);
7271

0 commit comments

Comments
 (0)