Salome HOME
Updated copyright comment
[modules/hexablock.git] / src / HEXABLOCK / HexElements_check.cxx
index 6323c164d43436cd912765445cf5ccaaec1ffa24..d73fd11822e251b51b72d011cfa06b85f759a1dd 100644 (file)
@@ -1,7 +1,7 @@
 
 // C++ : Controle arguments
 
-// Copyright (C) 2009-2016  CEA/DEN, EDF R&D
+// Copyright (C) 2009-2024  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -304,7 +304,7 @@ void Elements::checkSense (int nro, Vertex* v1, Vertex* v2, Quad* quad)
    cpchar where = nro < 4 ? "start" : "target";
    setError (HERR);
    Mess << "Arguments nr " << nro << " and " << nro+2 
-        << " : these vertices doenst define an edge of the "
+        << " : these vertices do not define an edge of the "
         << where << " quad";
 }
 // ======================================================== checkPhi
@@ -551,7 +551,7 @@ void Elements::checkContour (Quads& tquad, Vertex* v1, Vertex* v2, bool target,
 {
    tedge.clear ();
    cpchar who    = target ? "Target" : "Pattern";
-   string nmedge = target ? "Vertices of target (args 5 and 6)" 
+   std::string nmedge = target ? "Vertices of target (args 5 and 6)" 
                           : "Vertices of pattern (args 3 and 4)" ;
    nmedge += "don't define an edge" ;
 
@@ -563,8 +563,8 @@ void Elements::checkContour (Quads& tquad, Vertex* v1, Vertex* v2, bool target,
       return;
       }
 
-   map <Edge*, int> edge_count;
-   map <Edge*, int> :: iterator iter;
+   std::map <Edge*, int> edge_count;
+   std::map <Edge*, int> :: iterator iter;
    int nbre = tquad.size();
    for (int nq=0 ; nq<nbre ; ++nq)
         {
@@ -634,7 +634,7 @@ void Elements::checkContour (Quads& tquad, Vertex* v1, Vertex* v2, bool target,
 {
    tvertex.clear ();
    cpchar who    = target ? "Target" : "Pattern";
-   string nmedge = target ? "Vertices of target (args 4 and 6)" 
+   std::string nmedge = target ? "Vertices of target (args 4 and 6)" 
                           : "Vertices of pattern (args 3 and 5)" ;
    nmedge += "don't define an edge" ;
 
@@ -646,8 +646,8 @@ void Elements::checkContour (Quads& tquad, Vertex* v1, Vertex* v2, bool target,
       return;
       }
 
-   map <Edge*, int> edge_count;
-   map <Edge*, int> :: iterator iter;
+   std::map <Edge*, int> edge_count;
+   std::map <Edge*, int> :: iterator iter;
    int nbre = tquad.size();
    for (int nq=0 ; nq<nbre ; ++nq)
         {