summaryrefslogtreecommitdiffstats
path: root/Source/cmFindPathCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-07-15 11:39:47 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-07-15 11:40:00 (GMT)
commita92b7fd46bcf1ecd255290d84c691a244c8ecb26 (patch)
tree13d56424cfcf969d0afaab6762a76656e0d995f0 /Source/cmFindPathCommand.h
parent3376067bae3972b0fc7232b524ee80e2fc39950f (diff)
parent1591f138f1a40fccdde7fb2796ee2d2d8f3f97bb (diff)
downloadCMake-a92b7fd46bcf1ecd255290d84c691a244c8ecb26.zip
CMake-a92b7fd46bcf1ecd255290d84c691a244c8ecb26.tar.gz
CMake-a92b7fd46bcf1ecd255290d84c691a244c8ecb26.tar.bz2
Merge topic 'modernize-cmCommand-memory-management'
1591f138f1 modernize: manage cmCommand instances using unique_ptr. d9b2c7dae2 Introduce memory management helper: cm_memory.hxx Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Sebastian Holtermann <sebholt@web.de> Merge-request: !3513
Diffstat (limited to 'Source/cmFindPathCommand.h')
-rw-r--r--Source/cmFindPathCommand.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/cmFindPathCommand.h b/Source/cmFindPathCommand.h
index cb0db4c..89e2cef 100644
--- a/Source/cmFindPathCommand.h
+++ b/Source/cmFindPathCommand.h
@@ -8,9 +8,11 @@
#include <string>
#include <vector>
+#include "cm_memory.hxx"
+
+#include "cmCommand.h"
#include "cmFindBase.h"
-class cmCommand;
class cmExecutionStatus;
/** \class cmFindPathCommand
@@ -27,7 +29,10 @@ public:
/**
* This is a virtual constructor for the command.
*/
- cmCommand* Clone() override { return new cmFindPathCommand; }
+ std::unique_ptr<cmCommand> Clone() override
+ {
+ return cm::make_unique<cmFindPathCommand>();
+ }
/**
* This is called when the command is first encountered in