Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
clang again
[simgrid.git] / src / mc / mc_replay.h
index c824d44..273c92c 100644 (file)
@@ -6,7 +6,8 @@
 #ifndef SIMGRID_MC_REPLAY_H
 #define SIMGRID_MC_REPLAY_H
 
-#include <xbt/base.h>
+#include "xbt/base.h"
+#include <string>
 
 SG_BEGIN_DECL()
 
@@ -14,11 +15,11 @@ SG_BEGIN_DECL()
  *
  *  This is using the format generated by traceToString().
  */
-XBT_PUBLIC_DATA(char*) MC_record_path;
+XBT_PUBLIC_DATA(std::string) MC_record_path;
 
 /** Whether the replay mode is enabled */
 static inline int MC_record_replay_is_active() {
-  return MC_record_path != 0;
+  return not MC_record_path.empty();
 }
 
 SG_END_DECL()