]> AND Public Git Repository - simgrid.git/blobdiff - docs/source/tuto_s4u/master-workers-lab1.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-lab1.cpp
index c71c60b08ce1b70f1f1d0df945574b4aa5908b15..bb374392346f2cf3dc9d91df2a6584074805e7f7 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. */
@@ -58,7 +58,7 @@ static void worker(std::vector<std::string> args)
 
   double compute_cost;
   do {
-    double* msg  = static_cast<double*>(mailbox->get());
+    double* msg  = mailbox->get<double>();
     compute_cost = *msg;
     delete msg;