mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 22:30:13 -06:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -88,14 +88,15 @@ protected:
|
||||
|
||||
class cmServer : public cmServerBase
|
||||
{
|
||||
CM_DISABLE_COPY(cmServer)
|
||||
|
||||
public:
|
||||
class DebugInfo;
|
||||
|
||||
cmServer(cmConnection* conn, bool supportExperimental);
|
||||
~cmServer() override;
|
||||
|
||||
cmServer(cmServer const&) = delete;
|
||||
cmServer& operator=(cmServer const&) = delete;
|
||||
|
||||
bool Serve(std::string* errorMessage) override;
|
||||
|
||||
cmFileMonitor* FileMonitor() const;
|
||||
|
||||
Reference in New Issue
Block a user