X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/08e7455d67920bbd7a87f440d00f2c1e071314a0..8d62bb541920e2e4e0f7d1fa26a7f6eec79370c2:/include/xbt/range.hpp diff --git a/include/xbt/range.hpp b/include/xbt/range.hpp index 618a7c7bd4..47f021e6bf 100644 --- a/include/xbt/range.hpp +++ b/include/xbt/range.hpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2016-2021. 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. */ @@ -9,8 +8,7 @@ #include -namespace simgrid { -namespace xbt { +namespace simgrid::xbt { /** Describes a contiguous inclusive-exclusive [a,b) range of values */ template class Range { @@ -28,7 +26,6 @@ public: bool contain(T const& x) const { return begin_ <= x && end_ > x; } }; -} -} +} // namespace simgrid::xbt #endif