]> SALOME platform Git repositories - plugins/netgenplugin.git/commitdiff
Salome HOME
Porting to OCCT 7.8.0 jfa/Porting_OCCT_780
authorjfa <jfa@opencascade.com>
Mon, 15 Jan 2024 14:28:30 +0000 (14:28 +0000)
committerjfa <jfa@opencascade.com>
Mon, 15 Jan 2024 14:28:30 +0000 (14:28 +0000)
src/NETGENPlugin/NETGENPlugin_Mesher.cxx

index 34cf316240adaa34f040405fa7a8c43d07b48cbe..7ec0c1636d630366665ee77bdb2020b9ffead720 100644 (file)
@@ -154,16 +154,27 @@ namespace
     {
       return (( Contains( other.n1 ) || Contains( other.n2 )) && ( this != &other ));
     }
+#if OCC_VERSION_LARGE < 0x07080000
     static int HashCode(const Link& aLink, int aLimit)
     {
       return ::HashCode(aLink.n1 + aLink.n2, aLimit);
     }
-
     static Standard_Boolean IsEqual(const Link& aLink1, const Link& aLink2)
     {
       return (( aLink1.n1 == aLink2.n1 && aLink1.n2 == aLink2.n2 ) ||
               ( aLink1.n1 == aLink2.n2 && aLink1.n2 == aLink2.n1 ));
     }
+#else
+    size_t operator()(const Link& aLink) const
+    {
+      return static_cast<size_t>(aLink.n1 + aLink.n2);
+    }
+    bool operator()(const Link& aLink1, const Link& aLink2) const
+    {
+      return (( aLink1.n1 == aLink2.n1 && aLink1.n2 == aLink2.n2 ) ||
+              ( aLink1.n1 == aLink2.n2 && aLink1.n2 == aLink2.n1 ));
+    }
+#endif
   };
 
   typedef NCollection_Map<Link,Link> TLinkMap;