X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cc735fda92d738d39f1017a15afb3ac7acd6b47c..657a66f7b1356f4d91ae3392f2cd999f0406a60c:/src/instr/instr_paje_containers.hpp diff --git a/src/instr/instr_paje_containers.hpp b/src/instr/instr_paje_containers.hpp index 52a2b2d816..3ab8fe8579 100644 --- a/src/instr/instr_paje_containers.hpp +++ b/src/instr/instr_paje_containers.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -18,7 +18,7 @@ class VariableType; class Container { static Container* root_container_; - static std::map all_containers_; + static std::map> all_containers_; long long int id_; std::string name_; /* Unique name of this container */ @@ -37,7 +37,7 @@ public: Type* type_; /* Type of this container */ Container* father_; - std::map children_; + std::map> children_; static Container* by_name_or_null(const std::string& name); static Container* by_name(const std::string& name);