]> AND Public Git Repository - simgrid.git/blobdiff - examples/s4u/dht-chord/s4u-dht-chord.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of framagit.org:simgrid/simgrid
[simgrid.git] / examples / s4u / dht-chord / s4u-dht-chord.cpp
index b675aa10ffdd47354b66c22cc1cf34c6d916448c..0b01f2985c1a3ab10e1ff913c2774a4c8ddc19c6 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010-2018. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2010-2019. 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. */
@@ -43,7 +43,7 @@ int main(int argc, char* argv[])
   XBT_DEBUG("Sets nb_keys to %d", nb_keys);
 
   HostChord::EXTENSION_ID = simgrid::s4u::Host::extension_create<HostChord>();
-  for (auto const& host : simgrid::s4u::Engine::getInstance()->get_all_hosts())
+  for (auto const& host : simgrid::s4u::Engine::get_instance()->get_all_hosts())
     host->extension_set(new HostChord(host));
 
   e.register_actor<Node>("node");