X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/48296e83ce3ba1fa3658a3a74d10a536e33b3849..39e98567c557d81dd5011b8e2ae883d4674b0c9d:/include/xbt/range.hpp diff --git a/include/xbt/range.hpp b/include/xbt/range.hpp index 86de02c3dd..47f021e6bf 100644 --- a/include/xbt/range.hpp +++ b/include/xbt/range.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2016-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2023. 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. */ @@ -8,8 +8,7 @@ #include -namespace simgrid { -namespace xbt { +namespace simgrid::xbt { /** Describes a contiguous inclusive-exclusive [a,b) range of values */ template class Range { @@ -27,7 +26,6 @@ public: bool contain(T const& x) const { return begin_ <= x && end_ > x; } }; -} -} +} // namespace simgrid::xbt #endif