diff options
author | Alexandre Ganea <alexandre.ganea@ubisoft.com> | 2019-06-01 21:47:44 +0000 |
---|---|---|
committer | Alexandre Ganea <alexandre.ganea@ubisoft.com> | 2019-06-01 21:47:44 +0000 |
commit | 5a2a054028c27d0716faf9b513f3fb5c8723400f (patch) | |
tree | 24cc9149c11dea8f3c5a289c3c3d442bb0dd7891 | |
parent | 900578d1c1273fcd1a157f12955cc21cc588b1c6 (diff) | |
download | bcm5719-llvm-5a2a054028c27d0716faf9b513f3fb5c8723400f.tar.gz bcm5719-llvm-5a2a054028c27d0716faf9b513f3fb5c8723400f.zip |
Silence 'warning: extra ‘;’ [-Wpedantic]' with GCC 7.3
llvm-svn: 362306
-rw-r--r-- | lldb/source/Host/common/TCPSocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/common/TCPSocket.cpp b/lldb/source/Host/common/TCPSocket.cpp index 201ddd352dd..58f99f7832f 100644 --- a/lldb/source/Host/common/TCPSocket.cpp +++ b/lldb/source/Host/common/TCPSocket.cpp @@ -124,7 +124,7 @@ std::string TCPSocket::GetRemoteConnectionURI() const { GetRemotePortNumber()); } return ""; -}; +} Status TCPSocket::CreateSocket(int domain) { Status error; |