Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
std::unordered_map are sufficient, no need for boost here
[simgrid.git] / src / surf / network_interface.cpp
index 86ebe14..6a0a74a 100644 (file)
@@ -61,7 +61,7 @@ extern "C" {
 namespace simgrid {
   namespace surf {
 
 namespace simgrid {
   namespace surf {
 
-    boost::unordered_map<std::string,Link *> *Link::links = new boost::unordered_map<std::string,Link *>();
+    std::unordered_map<std::string,Link *> *Link::links = new std::unordered_map<std::string,Link *>();
     Link *Link::byName(const char* name) {
       if (links->find(name) == links->end())
         return nullptr;
     Link *Link::byName(const char* name) {
       if (links->find(name) == links->end())
         return nullptr;