Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Clang-tidy: readability-qualified-auto.
[simgrid.git] / docs / source / tuto_mc / ndet-receive-s4u.cpp
index 061ae71250996b4f3618c176242e97db3938a234..cf1aba392359ee5c51fda113787c58773eff1761 100644 (file)
@@ -17,7 +17,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(example, "this example");
 
 static void server()
 {
-  auto mb = sg4::Mailbox::by_name("mymailbox");
+  auto* mb      = sg4::Mailbox::by_name("mymailbox");
   int value_got = -1;
   for (int count = 0; count < N; count++) {
     int *received = mb->get<int>();