diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-07 09:09:32 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-07 09:09:32 (GMT) |
commit | 8174e5cd9424a7f45174562f21eb80eb06a3f3d0 (patch) | |
tree | 283cce0202f775887dcbe5416ef7be65578803c0 /Source/cmCustomCommand.h | |
parent | 34e1d6db722b34bb6b4f7b8a7ea53a0bb61c5f58 (diff) | |
download | CMake-8174e5cd9424a7f45174562f21eb80eb06a3f3d0.zip CMake-8174e5cd9424a7f45174562f21eb80eb06a3f3d0.tar.gz CMake-8174e5cd9424a7f45174562f21eb80eb06a3f3d0.tar.bz2 |
cmCustomCommand: Remove special member functions.
The compiler generated ones are fine. The existing implementations
here are incorrect as they omit some members.
Diffstat (limited to 'Source/cmCustomCommand.h')
-rw-r--r-- | Source/cmCustomCommand.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmCustomCommand.h b/Source/cmCustomCommand.h index cc5501f..f9b38c3 100644 --- a/Source/cmCustomCommand.h +++ b/Source/cmCustomCommand.h @@ -26,8 +26,6 @@ class cmCustomCommand public: /** Default and copy constructors for STL containers. */ cmCustomCommand(); - cmCustomCommand(const cmCustomCommand& r); - cmCustomCommand& operator=(cmCustomCommand const& r); /** Main constructor specifies all information for the command. */ cmCustomCommand(cmMakefile const* mf, @@ -38,8 +36,6 @@ public: const char* comment, const char* workingDirectory); - ~cmCustomCommand(); - /** Get the output file produced by the command. */ const std::vector<std::string>& GetOutputs() const; |