]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Make it compile on RH8 native compiler of cluster
authorAnthony Geay <anthony.geay@edf.fr>
Wed, 4 Jan 2023 16:24:53 +0000 (17:24 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Wed, 4 Jan 2023 16:24:53 +0000 (17:24 +0100)
src/INTERP_KERNEL/InterpolationHelper.txx

index 48ca55d1fcf5e058914de3380142d9db056bec6d..2e50c8dfd376236a5e5b09e5fc50e05fc847a6c2 100755 (executable)
 
 namespace INTERP_KERNEL
 {
-  template<class MyMeshType>
-  BBTreeStandAlone<3,typename MyMeshType::MyConnType> BuildBBTree(const MyMeshType& srcMesh)
-  {
-    return BuildBBTreeWithAdjustment(srcMesh,[](double *,typename MyMeshType::MyConnType){});
-  }
-  
   template<class MyMeshType>
   BBTreeStandAlone<3,typename MyMeshType::MyConnType> BuildBBTreeWithAdjustment(const MyMeshType& srcMesh, std::function<void(double *,typename MyMeshType::MyConnType)> bboxAdjuster)
   {
@@ -55,4 +49,10 @@ namespace INTERP_KERNEL
     bboxAdjuster(bboxes.get(),nbElts);
     return BBTreeStandAlone<3,ConnType>(std::move(bboxes),numSrcElems);
   }
+
+  template<class MyMeshType>
+  BBTreeStandAlone<3,typename MyMeshType::MyConnType> BuildBBTree(const MyMeshType& srcMesh)
+  {
+    return BuildBBTreeWithAdjustment(srcMesh,[](double *,typename MyMeshType::MyConnType){});
+  }
 }