mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 04:40:18 -05:00
Refactoring: use append functions from cmext/algorithm
This commit is contained in:
@@ -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++;
|
||||
|
||||
Reference in New Issue
Block a user