X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..0e7d247670cc012d8e784d0c8bcbb70a1c0bb9c6:/src/mc/Type.hpp diff --git a/src/mc/Type.hpp b/src/mc/Type.hpp index 5551e23278..5d2ed59e83 100644 --- a/src/mc/Type.hpp +++ b/src/mc/Type.hpp @@ -12,8 +12,8 @@ #include #include -#include -#include +#include "xbt/asserts.h" +#include "xbt/base.h" #include @@ -33,7 +33,7 @@ public: static constexpr flags_type INHERITANCE_FLAG = 1; static constexpr flags_type VIRTUAL_POINTER_FLAG = 2; - Member() {} + Member() = default; /** Whether this member represent some inherited part of the object */ flags_type flags = 0; @@ -96,7 +96,7 @@ public: /** A type in the model-checked program */ class Type { public: - Type() {} + Type() = default; /** The DWARF TAG of the type (e.g. DW_TAG_array_type) */ int type = 0;