summaryrefslogtreecommitdiff
path: root/Source/cmComputeLinkDepends.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-01-29 23:19:40 +0100
committerStephen Kelly <steveire@gmail.com>2015-02-05 20:44:25 +0100
commit421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0 (patch)
tree3cddbf25b8b42e59b401e0d0a5670dab2a4c7e83 /Source/cmComputeLinkDepends.cxx
parent098160d5f2a1aa35d2f14c585dd87cefd8f56f41 (diff)
downloadcmake-421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0.tar.gz
Remove use of cmsys_stl.
It is not needed.
Diffstat (limited to 'Source/cmComputeLinkDepends.cxx')
-rw-r--r--Source/cmComputeLinkDepends.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmComputeLinkDepends.cxx b/Source/cmComputeLinkDepends.cxx
index 32d5cd3d24..fa1bbcceaf 100644
--- a/Source/cmComputeLinkDepends.cxx
+++ b/Source/cmComputeLinkDepends.cxx
@@ -669,7 +669,7 @@ void cmComputeLinkDepends::InferDependencies()
for(++i; i != sets->end(); ++i)
{
DependSet intersection;
- cmsys_stl::set_intersection
+ std::set_intersection
(common.begin(), common.end(), i->begin(), i->end(),
std::inserter(intersection, intersection.begin()));
common = intersection;
@@ -689,10 +689,10 @@ void cmComputeLinkDepends::CleanConstraintGraph()
{
// Sort the outgoing edges for each graph node so that the
// original order will be preserved as much as possible.
- cmsys_stl::sort(i->begin(), i->end());
+ std::sort(i->begin(), i->end());
// Make the edge list unique.
- EdgeList::iterator last = cmsys_stl::unique(i->begin(), i->end());
+ EdgeList::iterator last = std::unique(i->begin(), i->end());
i->erase(last, i->end());
}
}