Change std::make_pairs to C++11 standard without template arguments

This commit is contained in:
jriegel
2014-08-13 20:59:29 +02:00
parent 36a0641edd
commit b5431d57e0
5 changed files with 8 additions and 12 deletions

View File

@@ -646,8 +646,7 @@ void ViewProviderMeshSelfIntersections::showDefects(const std::vector<unsigned l
for (it = indices.begin(); it != indices.end(); ) {
unsigned long id1 = *it; ++it;
unsigned long id2 = *it; ++it;
intersection.push_back(std::make_pair
<unsigned long, unsigned long>(id1,id2));
intersection.push_back(std::make_pair(id1,id2));
}
std::vector<std::pair<Base::Vector3f, Base::Vector3f> > lines;