]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Remove compilation warning on Mandriva 2010.1
authoreap <eap@opencascade.com>
Wed, 29 Sep 2010 13:54:58 +0000 (13:54 +0000)
committereap <eap@opencascade.com>
Wed, 29 Sep 2010 13:54:58 +0000 (13:54 +0000)
warning: no previous declaration for ...

src/INTERP_KERNELTest/UnitTetraIntersectionBaryTest.cxx
src/RENUMBER/renumbering.cxx

index bfac8f9c8c2b02bddaad6af8f332311e20345766..b7fa9348c3f14e86ed4c8231e18b556652a824c3 100644 (file)
@@ -34,7 +34,7 @@ using namespace INTERP_KERNEL;
 
 namespace INTERP_TEST
 {
-  void fill_UnitTetraIntersectionBary(UnitTetraIntersectionBary& bary, double nodes[][3])
+  static void fill_UnitTetraIntersectionBary(UnitTetraIntersectionBary& bary, double nodes[][3])
   {
     int faceConn[4][3] = { { 0, 1, 2 },// inverse order
                            { 0, 3, 1 },
index ee9853f9934c174d3b6fe739026edbe968a90c08..89cc4acecfe86d2729a0f5826383d6564082a548 100644 (file)
@@ -39,6 +39,9 @@ using namespace std;
 using namespace MED_EN;
 using namespace MED_RENUMBER;
 
+namespace
+{
+
 void computeNeighbour(const MESH* mesh,const medGeometryElement& Type, vector<list<int> >& neighbour, int& ntot,int& nb_cell)
 {
   CONNECTIVITY* conn = (CONNECTIVITY*)mesh->getConnectivityptr();
@@ -186,6 +189,7 @@ void changeFamily(MESH* mesh, const medGeometryElement& Type, const vector<int>&
         }
     }
 }
+} // namespace
 
 int main (int argc, char** argv)
 {