File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
llvm/include/llvm/Support Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ class WSABalancer {
35
35
};
36
36
#endif // _WIN32
37
37
38
- // / \class ListeningSocket
39
38
// / Manages a passive (i.e., listening) UNIX domain socket
40
39
// /
41
40
// / The ListeningSocket class encapsulates a UNIX domain socket that can listen
@@ -66,7 +65,7 @@ class ListeningSocket {
66
65
// / file descriptor (FD) could be closed while ::poll is waiting for it to be
67
66
// / ready to perform a I/O operations. ::poll will continue to block even
68
67
// / 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
70
69
71
70
ListeningSocket (int SocketFD, StringRef SocketPath, int PipeFD[2 ]);
72
71
You can’t perform that action at this time.
0 commit comments