diff options
author | Brad King <brad.king@kitware.com> | 2019-07-15 11:39:47 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-07-15 11:40:00 (GMT) |
commit | a92b7fd46bcf1ecd255290d84c691a244c8ecb26 (patch) | |
tree | 13d56424cfcf969d0afaab6762a76656e0d995f0 /Source/cmFindFileCommand.h | |
parent | 3376067bae3972b0fc7232b524ee80e2fc39950f (diff) | |
parent | 1591f138f1a40fccdde7fb2796ee2d2d8f3f97bb (diff) | |
download | CMake-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/cmFindFileCommand.h')
-rw-r--r-- | Source/cmFindFileCommand.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Source/cmFindFileCommand.h b/Source/cmFindFileCommand.h index 4309449..152b505 100644 --- a/Source/cmFindFileCommand.h +++ b/Source/cmFindFileCommand.h @@ -5,9 +5,10 @@ #include "cmConfigure.h" // IWYU pragma: keep -#include "cmFindPathCommand.h" +#include "cm_memory.hxx" -class cmCommand; +#include "cmCommand.h" +#include "cmFindPathCommand.h" /** \class cmFindFileCommand * \brief Define a command to search for an executable program. @@ -24,7 +25,10 @@ public: /** * This is a virtual constructor for the command. */ - cmCommand* Clone() override { return new cmFindFileCommand; } + std::unique_ptr<cmCommand> Clone() override + { + return cm::make_unique<cmFindFileCommand>(); + } }; #endif |