summaryrefslogtreecommitdiff
path: root/Source/cmSetTargetPropertiesCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-12-18 14:31:53 +0000
committerKitware Robot <kwrobot@kitware.com>2019-12-18 09:32:03 -0500
commit0607a50bb38590e5a47b7314c0bf0ad25187ae8f (patch)
treee69c3a85171d1b782e091411baca82a5ebc5cb23 /Source/cmSetTargetPropertiesCommand.cxx
parentc507661ca07df2199bf63cedececfbaf582e0fd0 (diff)
parentf7d12609f038a0e4e09f9a40fa081c4a4db3e56b (diff)
downloadcmake-0607a50bb38590e5a47b7314c0bf0ad25187ae8f.tar.gz
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.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmSetTargetPropertiesCommand.cxx b/Source/cmSetTargetPropertiesCommand.cxx
index 0174f1f37f..cd0fa402a2 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++;