Skip to content

Commit 1b7bd8f

Browse files
committed
Fix clang-formatting bug in operator= of TCPSocket
1 parent 53dc625 commit 1b7bd8f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

support/src/TCPSocket.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ namespace PCOE {
3232
std::swap(result, other.result);
3333
}
3434
AddressInfo& operator=(const AddressInfo&) = delete;
35-
AddressInfo& operator =(AddressInfo&& other) {
35+
36+
AddressInfo& operator=(AddressInfo&& other) {
3637
std::swap(result, other.result);
3738
return *this;
3839
}

0 commit comments

Comments
 (0)