X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f36bb244f8e4874b90572ecb44ed6e2f3fa9592b..9fd6cbc6c3b06f4b09e3c3339ffb3cc8a68f9bfa:/src/instr/instr_paje_events.hpp diff --git a/src/instr/instr_paje_events.hpp b/src/instr/instr_paje_events.hpp index eb4041ef48..27ce68dc01 100644 --- a/src/instr/instr_paje_events.hpp +++ b/src/instr/instr_paje_events.hpp @@ -7,6 +7,7 @@ #define INSTR_PAJE_EVENTS_HPP #include "src/instr/instr_private.hpp" +#include "src/internal_config.h" #include #include @@ -53,11 +54,11 @@ public: }; class VariableEvent : public PajeEvent { - double value; + double value_; public: VariableEvent(double timestamp, Container* container, Type* type, e_event_type event_type, double value) - : PajeEvent::PajeEvent(container, type, timestamp, event_type), value(value) + : PajeEvent::PajeEvent(container, type, timestamp, event_type), value_(value) { } void print() override; @@ -65,8 +66,10 @@ public: class StateEvent : public PajeEvent { EntityValue* value; +#if HAVE_SMPI std::string filename = "(null)"; int linenumber = -1; +#endif TIData* extra_; public: