X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a6683a1cd7515c04a74364c9f991d55d9329a7c5..ff420e1906d916322427488153e45bf82d5c03dd:/src/mc/ChunkedData.hpp diff --git a/src/mc/ChunkedData.hpp b/src/mc/ChunkedData.hpp index 076e607560..52b56c9a55 100644 --- a/src/mc/ChunkedData.hpp +++ b/src/mc/ChunkedData.hpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2014-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2014-2018. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -35,10 +34,10 @@ class ChunkedData { std::vector pagenos_; public: - ChunkedData() {} + ChunkedData() = default; void clear() { - for (std::size_t pageno : pagenos_) + for (std::size_t const& pageno : pagenos_) store_->unref_page(pageno); pagenos_.clear(); } @@ -49,17 +48,17 @@ public: // Copy and move ChunkedData(ChunkedData const& that) + : store_ (that.store_) + , pagenos_(that.pagenos_) { - store_ = that.store_; - pagenos_ = that.pagenos_; - for (std::size_t pageno : pagenos_) + for (std::size_t const& pageno : pagenos_) store_->ref_page(pageno); } ChunkedData(ChunkedData&& that) + : store_(that.store_) + , pagenos_(std::move(that.pagenos_)) { - store_ = that.store_; that.store_ = nullptr; - pagenos_ = std::move(that.pagenos_); that.pagenos_.clear(); } ChunkedData& operator=(ChunkedData const& that) @@ -67,7 +66,7 @@ public: this->clear(); store_ = that.store_; pagenos_ = that.pagenos_; - for (std::size_t pageno : pagenos_) + for (std::size_t const& pageno : pagenos_) store_->ref_page(pageno); return *this; }