]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Removes warning BeforeRefCount
authorageay <ageay>
Fri, 12 Mar 2010 11:04:47 +0000 (11:04 +0000)
committerageay <ageay>
Fri, 12 Mar 2010 11:04:47 +0000 (11:04 +0000)
src/INTERP_KERNELTest/PointLocatorTest.cxx
src/RENUMBER/Makefile.am

index 4d8baf8f29477f4933236b7a0fa200f71ad58948..31ccde36bc2d426baa7e6eef92fb50053a5941f8 100644 (file)
@@ -47,7 +47,7 @@ namespace INTERP_TEST
    */
   void PointLocatorTest::test_PointLocator() {
     MEDMEM::MESH* mesh2D= MEDMeshMaker(2,2,MED_EN::MED_QUAD4);
-    INTERP_KERNEL::PointLocator pl(*mesh2D) ;
+    MEDMEM::PointLocator pl(*mesh2D) ;
     double x[2]={0.0,0.0};
     std::list<int> elems = pl.locate(x);
     CPPUNIT_ASSERT_EQUAL(1,(int)elems.size());
@@ -72,7 +72,7 @@ namespace INTERP_TEST
     delete mesh2D;
 
     MEDMEM::MESH* mesh3D= MEDMeshMaker(3,2,MED_EN::MED_HEXA8);
-    INTERP_KERNEL::PointLocator pl3(*mesh3D);
+    MEDMEM::PointLocator pl3(*mesh3D);
     double xx[3]={0.0,0.0,0.0};
     elems = pl3.locate(xx);
     CPPUNIT_ASSERT_EQUAL(1,(int)elems.size());
index 6a2cf95749f3ef40a538e2840dfcdcde8656ec1a..16244172888ad8a6d8aaaef1cd3c05aeb39fc04e 100644 (file)
@@ -52,7 +52,7 @@ endif
 
 librenumber_la_CPPFLAGS= $(MED2_INCLUDES) $(HDF5_INCLUDES) @CXXTMPDPTHFLAGS@ \
        $(BOOST_CPPFLAGS) \
-       -I$(srcdir)/../MEDMEM -I$(srcdir)/../MEDWrapper/V2_1/Core
+       -I$(srcdir)/../MEDMEM -I$(srcdir)/../MEDWrapper/V2_1/Core -I$(srcdir)/../INTERP_KERNEL/Bases
 
 librenumber_la_LDFLAGS= 
 #libmedsplitter_la_LDFLAGS= $(MED2_LIBS) $(HDF5_LIBS) $(STDLIB) \