Salome HOME
Keep track of datetime of configuration
[tools/medcoupling.git] / src / RENUMBER / RENUMBER_BOOSTRenumbering.cxx
index d6e385ec7582ae941c28831bdc7aa416b587c7ad..b6d7f1a1a526797ee447eb21ab37e28b1978ffc5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2020  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2022  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -37,8 +37,6 @@ void BOOSTRenumbering::renumber(const mcIdType *graph, const mcIdType *index_gra
   typedef boost::adjacency_list<boost::vecS, boost::vecS, boost::undirectedS, 
      boost::property<boost::vertex_color_t, boost::default_color_type,
        boost::property<boost::vertex_degree_t,mcIdType> > > Graph;
-  typedef boost::graph_traits<Graph>::vertex_descriptor Vertex;
-  typedef boost::graph_traits<Graph>::vertices_size_type size_type;
   Graph G(nbCell);
   for (mcIdType i=0;i<nbCell;++i)
     for (mcIdType j=index_graph[i];j<index_graph[i+1];++j)