diff options
author | Brad King <brad.king@kitware.com> | 2019-12-18 14:31:53 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-12-18 14:32:03 (GMT) |
commit | 0607a50bb38590e5a47b7314c0bf0ad25187ae8f (patch) | |
tree | e69c3a85171d1b782e091411baca82a5ebc5cb23 /Source/cmSetTargetPropertiesCommand.cxx | |
parent | c507661ca07df2199bf63cedececfbaf582e0fd0 (diff) | |
parent | f7d12609f038a0e4e09f9a40fa081c4a4db3e56b (diff) | |
download | CMake-0607a50bb38590e5a47b7314c0bf0ad25187ae8f.zip CMake-0607a50bb38590e5a47b7314c0bf0ad25187ae8f.tar.gz CMake-0607a50bb38590e5a47b7314c0bf0ad25187ae8f.tar.bz2 |
Merge topic 'add-header-cmext-algorithm'
f7d12609f0 Refactoring: use append functions from cmext/algorithm
a38d04c076 Refactoring: introduce header cmext/algorithm with append functions
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4131
Diffstat (limited to 'Source/cmSetTargetPropertiesCommand.cxx')
-rw-r--r-- | Source/cmSetTargetPropertiesCommand.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmSetTargetPropertiesCommand.cxx b/Source/cmSetTargetPropertiesCommand.cxx index 0174f1f..cd0fa40 100644 --- a/Source/cmSetTargetPropertiesCommand.cxx +++ b/Source/cmSetTargetPropertiesCommand.cxx @@ -4,7 +4,8 @@ #include <iterator> -#include "cmAlgorithms.h" +#include <cmext/algorithm> + #include "cmExecutionStatus.h" #include "cmMakefile.h" #include "cmStringAlgorithms.h" @@ -33,7 +34,7 @@ bool cmSetTargetPropertiesCommand(std::vector<std::string> const& args, status.SetError("called with incorrect number of arguments."); return false; } - cmAppend(propertyPairs, j, args.end()); + cm::append(propertyPairs, j, args.end()); break; } numFiles++; |