[lldb] Fix more -Wdeprecated-copy warnings
authorPavel Labath <pavel@labath.sk>
Tue, 12 Nov 2019 13:25:18 +0000 (14:25 +0100)
committerPavel Labath <pavel@labath.sk>
Tue, 12 Nov 2019 13:39:47 +0000 (14:39 +0100)
commit6aa60b0514865751ea9dd208236db60eb69aaf1e
tree2b6a086292f7815960884095215dc7759eebb905
parent1dfb1a85e7cbc37bf6fff9bb046c6e8be0c26b8e
[lldb] Fix more -Wdeprecated-copy warnings

This warning triggers when a class defines a copy constructor but not a
copy-assignment operator (which then gets auto-generated by the
compiler). Fix the warning by deleting the other operator too, as the
default implementation works just fine.
lldb/include/lldb/Core/SearchFilter.h
lldb/include/lldb/Host/SocketAddress.h
lldb/include/lldb/Utility/StringExtractorGDBRemote.h
lldb/source/Core/SearchFilter.cpp
lldb/source/Host/common/SocketAddress.cpp
lldb/source/Host/common/TCPSocket.cpp