mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -71,12 +71,13 @@ private:
|
||||
|
||||
class cmServerProtocol
|
||||
{
|
||||
CM_DISABLE_COPY(cmServerProtocol)
|
||||
|
||||
public:
|
||||
cmServerProtocol() = default;
|
||||
virtual ~cmServerProtocol() = default;
|
||||
|
||||
cmServerProtocol(cmServerProtocol const&) = delete;
|
||||
cmServerProtocol& operator=(cmServerProtocol const&) = delete;
|
||||
|
||||
virtual std::pair<int, int> ProtocolVersion() const = 0;
|
||||
virtual bool IsExperimental() const = 0;
|
||||
virtual const cmServerResponse Process(const cmServerRequest& request) = 0;
|
||||
|
||||
Reference in New Issue
Block a user