X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/331f0df3af28a0f102fa15d535758c930c79a179..fc5db5a9e1306f8490d61b293781b817587a96ec:/src/mc/Type.hpp diff --git a/src/mc/Type.hpp b/src/mc/Type.hpp index 287a6794b9..46a0516ab9 100644 --- a/src/mc/Type.hpp +++ b/src/mc/Type.hpp @@ -66,6 +66,19 @@ public: } }; +inline +Type::Type() +{ + this->type = 0; + this->id = 0; + this->byte_size = 0; + this->element_count = 0; + this->is_pointer_type = 0; + this->type_id = 0; + this->subtype = nullptr; + this->full_type = nullptr; +} + } }