summaryrefslogtreecommitdiff
path: root/Source/cmTargetIncludeDirectoriesCommand.h
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@gmail.com>2019-07-04 18:14:22 +0200
committerMarc Chevrier <marc.chevrier@gmail.com>2019-07-14 15:37:30 +0200
commit1591f138f1a40fccdde7fb2796ee2d2d8f3f97bb (patch)
tree4db8440a950a88b7c15ea43218f98f61775bf889 /Source/cmTargetIncludeDirectoriesCommand.h
parentd9b2c7dae242868f13fc366773fb09448da26e8d (diff)
downloadcmake-1591f138f1a40fccdde7fb2796ee2d2d8f3f97bb.tar.gz
modernize: manage cmCommand instances using unique_ptr.
Diffstat (limited to 'Source/cmTargetIncludeDirectoriesCommand.h')
-rw-r--r--Source/cmTargetIncludeDirectoriesCommand.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/cmTargetIncludeDirectoriesCommand.h b/Source/cmTargetIncludeDirectoriesCommand.h
index 57bf8fcf32..6defab248a 100644
--- a/Source/cmTargetIncludeDirectoriesCommand.h
+++ b/Source/cmTargetIncludeDirectoriesCommand.h
@@ -8,9 +8,11 @@
#include <string>
#include <vector>
+#include "cm_memory.hxx"
+
+#include "cmCommand.h"
#include "cmTargetPropCommandBase.h"
-class cmCommand;
class cmExecutionStatus;
class cmTarget;
@@ -20,7 +22,10 @@ public:
/**
* This is a virtual constructor for the command.
*/
- cmCommand* Clone() override { return new cmTargetIncludeDirectoriesCommand; }
+ std::unique_ptr<cmCommand> Clone() override
+ {
+ return cm::make_unique<cmTargetIncludeDirectoriesCommand>();
+ }
/**
* This is called when the command is first encountered in