diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2019-07-04 18:14:22 +0200 |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2019-07-14 15:37:30 +0200 |
commit | 1591f138f1a40fccdde7fb2796ee2d2d8f3f97bb (patch) | |
tree | 4db8440a950a88b7c15ea43218f98f61775bf889 /Source/cmGetTestPropertyCommand.h | |
parent | d9b2c7dae242868f13fc366773fb09448da26e8d (diff) | |
download | cmake-1591f138f1a40fccdde7fb2796ee2d2d8f3f97bb.tar.gz |
modernize: manage cmCommand instances using unique_ptr.
Diffstat (limited to 'Source/cmGetTestPropertyCommand.h')
-rw-r--r-- | Source/cmGetTestPropertyCommand.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/cmGetTestPropertyCommand.h b/Source/cmGetTestPropertyCommand.h index 4a74f593f8..a53a7f7448 100644 --- a/Source/cmGetTestPropertyCommand.h +++ b/Source/cmGetTestPropertyCommand.h @@ -8,6 +8,8 @@ #include <string> #include <vector> +#include "cm_memory.hxx" + #include "cmCommand.h" class cmExecutionStatus; @@ -15,7 +17,10 @@ class cmExecutionStatus; class cmGetTestPropertyCommand : public cmCommand { public: - cmCommand* Clone() override { return new cmGetTestPropertyCommand; } + std::unique_ptr<cmCommand> Clone() override + { + return cm::make_unique<cmGetTestPropertyCommand>(); + } /** * This is called when the command is first encountered in |