浏览代码

Silence Clang error on private assignment operator

Renato Golin 13 年之前
父节点
当前提交
086669c874
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      esp/services/WsDeploy/WsDeployService.hpp

+ 1 - 1
esp/services/WsDeploy/WsDeployService.hpp

@@ -295,7 +295,7 @@ private:
     private:
     private:
       CConfigFileMonitorThread() : m_configChangeNotification(NULL) {};
       CConfigFileMonitorThread() : m_configChangeNotification(NULL) {};
       CConfigFileMonitorThread(const CConfigFileMonitorThread& configFileThread) : m_configChangeNotification(NULL) {};
       CConfigFileMonitorThread(const CConfigFileMonitorThread& configFileThread) : m_configChangeNotification(NULL) {};
-      CConfigFileMonitorThread& operator=(CConfigFileMonitorThread const&) {};
+      CConfigFileMonitorThread& operator=(CConfigFileMonitorThread const&);
     };
     };
 
 
     class CClientAliveThread : public CInterface, implements IThreaded, implements IInterface
     class CClientAliveThread : public CInterface, implements IThreaded, implements IInterface