X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ea74f5d95928a521a588737e81f1de94eef25d19..9c75f07789910285d43f4e26f697565a31589e60:/src/mc/inspect/LocationList.hpp diff --git a/src/mc/inspect/LocationList.hpp b/src/mc/inspect/LocationList.hpp index e0d15483a7..f8608cd824 100644 --- a/src/mc/inspect/LocationList.hpp +++ b/src/mc/inspect/LocationList.hpp @@ -16,8 +16,7 @@ #include #include -namespace simgrid { -namespace dwarf { +namespace simgrid::dwarf { /** A DWARF expression with optional validity constraints */ class LocationListEntry { @@ -32,9 +31,7 @@ private: public: LocationListEntry() = default; LocationListEntry(DwarfExpression expression, range_type range) : expression_(std::move(expression)), range_(range) {} - explicit LocationListEntry(DwarfExpression expression) : expression_(std::move(expression)), range_({0, UINT64_MAX}) - { - } + explicit LocationListEntry(DwarfExpression expression) : expression_(std::move(expression)) {} DwarfExpression& expression() { return expression_; } DwarfExpression const& expression() const { return expression_; } @@ -74,7 +71,6 @@ Location resolve(simgrid::dwarf::LocationList const& locations, simgrid::mc::Obj XBT_PRIVATE simgrid::dwarf::LocationList location_list(const simgrid::mc::ObjectInformation& info, Dwarf_Attribute& attr); -} // namespace dwarf -} // namespace simgrid +} // namespace simgrid::dwarf #endif