Fix build

master
Jeremy Hu 2019-07-07 20:40:24 +09:30
parent 8d315e3c64
commit 58b6c7d1d9
1 changed files with 2 additions and 2 deletions

View File

@ -286,10 +286,10 @@ nodemesh::Combiner::Mesh *MeshGenerator::combinePartMesh(const QString &partIdSt
if (cutFaceVisitedNodeIds.find(fromNodeIdString) != cutFaceVisitedNodeIds.end()) if (cutFaceVisitedNodeIds.find(fromNodeIdString) != cutFaceVisitedNodeIds.end())
return; return;
cutFaceVisitedNodeIds.insert(fromNodeIdString); cutFaceVisitedNodeIds.insert(fromNodeIdString);
cutFaceNodes.push_back({std::get<0>(findCutFaceNode->second), cutFaceNodes.push_back(std::make_tuple(std::get<0>(findCutFaceNode->second),
std::get<1>(findCutFaceNode->second), std::get<1>(findCutFaceNode->second),
std::get<2>(findCutFaceNode->second), std::get<2>(findCutFaceNode->second),
fromNodeIdString}); fromNodeIdString));
auto findNeighbor = cutFaceNodeLinkMap.find(fromNodeIdString); auto findNeighbor = cutFaceNodeLinkMap.find(fromNodeIdString);
if (findNeighbor == cutFaceNodeLinkMap.end()) if (findNeighbor == cutFaceNodeLinkMap.end())
return; return;