X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d57f583f531c3ed96281734e99a3199e0a58ec3f..fea2606dff029fec63088d8e3d9f42925a67efea:/src/mc/Variable.hpp diff --git a/src/mc/Variable.hpp b/src/mc/Variable.hpp index 9b57dbcb9d..5b82b6cebd 100644 --- a/src/mc/Variable.hpp +++ b/src/mc/Variable.hpp @@ -11,42 +11,28 @@ #include -#include "mc_forward.h" -#include "mc/LocationList.hpp" +#include "src/mc/mc_forward.h" +#include "src/mc/LocationList.hpp" namespace simgrid { namespace mc { +/** A variable (global or local) in the model-checked program */ class Variable { public: - Variable(); - - unsigned dwarf_offset; /* Global offset of the field. */ - int global; + Variable() {} + unsigned dwarf_offset = 0; /* Global offset of the field. */ + int global = 0; std::string name; - unsigned type_id; - simgrid::mc::Type* type; - + unsigned type_id = 0; + simgrid::mc::Type* type = nullptr; // Use either of: simgrid::dwarf::LocationList location_list; - void* address; - - size_t start_scope; - simgrid::mc::ObjectInformation* object_info; + void* address = nullptr; + size_t start_scope = 0; + simgrid::mc::ObjectInformation* object_info = nullptr; }; -inline -Variable::Variable() -{ - this->dwarf_offset = 0; - this->global = 0; - this->type = nullptr; - this->type_id = 0; - this->address = nullptr; - this->start_scope = 0; - this->object_info = nullptr; -} - } }