]> AND Public Git Repository - simgrid.git/blobdiff - docs/source/tuto_s4u/master-workers-lab2.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Document the command-line interface to the textual loggings
[simgrid.git] / docs / source / tuto_s4u / master-workers-lab2.cpp
index 573c5f370707ece731c038838824168757e6db5c..6dad6a3df58db0b443aa8047ff49e7d0246d3c65 100644 (file)
@@ -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. */
@@ -23,7 +23,7 @@ static void worker()
 
   double compute_cost;
   do {
-    double* msg  = static_cast<double*>(mailbox->get());
+    double* msg  = mailbox->get<double>();
     compute_cost = *msg;
     delete msg;