mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 21:30:31 -04:00
USE_GCC=yes has been omitted though. Remove USE_FORTRAN handling from bsd.port.mk and bsd.gcc.mk. Minor cleanups in some ports like USE_GMAKE, NOPORTDOCS,... Exp-run: bdrewery Approved by: portmgr (bdrewery)
13 lines
668 B
C++
13 lines
668 B
C++
--- Mesh/meshGFaceBDS.cpp.orig
|
|
+++ Mesh/meshGFaceBDS.cpp
|
|
@@ -771,8 +771,8 @@
|
|
while (it != m.edges.end()){
|
|
BDS_Edge *e = *it;
|
|
if (!e->deleted && e->numfaces() == 2){
|
|
- std::map<BDS_Point*, MVertex*>::iterator itp1 = recoverMap->find(e->p1);
|
|
- std::map<BDS_Point*, MVertex*>::iterator itp2 = recoverMap->find(e->p2);
|
|
+ std::map<BDS_Point*, MVertex*, PointLessThan>::iterator itp1 = recoverMap->find(e->p1);
|
|
+ std::map<BDS_Point*, MVertex*, PointLessThan>::iterator itp2 = recoverMap->find(e->p2);
|
|
if (itp1 != recoverMap->end() &&
|
|
itp2 != recoverMap->end() &&
|
|
itp1->second == itp2->second) toSplit.insert(e);
|