X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c0066756813cabe50a74ef326ec88eb71984556a..976687c46605cb7f3513a3f9549ef43f737e4b7d:/src/mc/explo/odpor/WakeupTree.hpp diff --git a/src/mc/explo/odpor/WakeupTree.hpp b/src/mc/explo/odpor/WakeupTree.hpp index ee654c4ace..ea8cf2959a 100644 --- a/src/mc/explo/odpor/WakeupTree.hpp +++ b/src/mc/explo/odpor/WakeupTree.hpp @@ -49,10 +49,10 @@ public: WakeupTreeNode& operator=(const WakeupTreeNode&) = delete; WakeupTreeNode& operator=(WakeupTreeNode&&) = default; - const auto begin() const { return this->children_.begin(); } - const auto end() const { return this->children_.end(); } - const auto rbegin() const { return this->children_.rbegin(); } - const auto rend() const { return this->children_.rend(); } + auto begin() const { return this->children_.begin(); } + auto end() const { return this->children_.end(); } + auto rbegin() const { return this->children_.rbegin(); } + auto rend() const { return this->children_.rend(); } bool is_leaf() const { return children_.empty(); } bool is_root() const { return parent_ == nullptr; }