Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SMPI_is_inited() and smpi_enabled() have the same purpose. Keep only the former.
[simgrid.git] / src / mc / mc_hash.cpp
index 7b86d7f..8b667d0 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2014-2020. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2014-2022. 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. */
@@ -16,8 +16,7 @@
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_hash, mc, "Logging specific to mc_hash");
 
-namespace simgrid {
-namespace mc {
+namespace simgrid::mc {
 
 namespace {
 
@@ -37,7 +36,7 @@ public:
 
 hash_type hash(Snapshot const& snapshot)
 {
-  XBT_DEBUG("START hash %i", snapshot.num_state_);
+  XBT_DEBUG("START hash %ld", snapshot.num_state_);
   djb_hash hash;
   // TODO:
   // * nb_processes
@@ -45,9 +44,8 @@ hash_type hash(Snapshot const& snapshot)
   // * root variables
   // * basic stack frame information
   // * stack frame local variables
-  XBT_DEBUG("END hash %i", snapshot.num_state_);
+  XBT_DEBUG("END hash %ld", snapshot.num_state_);
   return hash.value();
 }
 
-}
-}
+} // namespace simgrid::mc