X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/301989b17111d6a39df60385a4c2e73fcff8cd86..a7f9c211eacf8b7ee21fca73bcbcedfdc13f6ce6:/src/mc/LocationList.hpp diff --git a/src/mc/LocationList.hpp b/src/mc/LocationList.hpp index 2a8bdbad76..da1af221ce 100644 --- a/src/mc/LocationList.hpp +++ b/src/mc/LocationList.hpp @@ -15,23 +15,23 @@ #include #include -#include -#include +#include "xbt/base.h" +#include "xbt/range.hpp" #include "src/mc/mc_base.h" #include "src/mc/mc_forward.hpp" -#include "src/mc/AddressSpace.hpp" #include "src/mc/DwarfExpression.hpp" namespace simgrid { namespace dwarf { -/** \brief A DWARF expression with optional validity contraints */ +/** A DWARF expression with optional validity constraints */ class LocationListEntry { public: - typedef simgrid::xbt::range range_type; + typedef simgrid::xbt::Range range_type; private: DwarfExpression expression_; + // By default, the expression is always valid: range_type range_ = {0, UINT64_MAX}; public: LocationListEntry() {}