X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..b9625f82f86db0674e911887addce45dca31b57f:/src/kernel/routing/NetPoint.cpp diff --git a/src/kernel/routing/NetPoint.cpp b/src/kernel/routing/NetPoint.cpp index 2945ccf2eb..6ff888d333 100644 --- a/src/kernel/routing/NetPoint.cpp +++ b/src/kernel/routing/NetPoint.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2020. 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. */ @@ -10,12 +10,15 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route, surf, "Routing part of surf"); namespace simgrid { + +template class xbt::Extendable; + namespace kernel { namespace routing { -simgrid::xbt::signal NetPoint::on_creation; +simgrid::xbt::signal NetPoint::on_creation; -NetPoint::NetPoint(std::string name, NetPoint::Type componentType, NetZoneImpl* netzone_p) +NetPoint::NetPoint(const std::string& name, NetPoint::Type componentType, NetZoneImpl* netzone_p) : name_(name), component_type_(componentType), englobing_zone_(netzone_p) { if (netzone_p != nullptr) @@ -23,7 +26,7 @@ NetPoint::NetPoint(std::string name, NetPoint::Type componentType, NetZoneImpl* else id_ = static_cast(-1); simgrid::s4u::Engine::get_instance()->netpoint_register(this); - simgrid::kernel::routing::NetPoint::on_creation(this); + simgrid::kernel::routing::NetPoint::on_creation(*this); } } }