From 827965c09cf0730102d17c00d1f56fb4ea265d5e Mon Sep 17 00:00:00 2001 From: Rhys Mainwaring Date: Mon, 30 Dec 2024 15:34:39 +0000 Subject: [PATCH] CGAL: support version 6.0 - Update formatting for cpplint. Signed-off-by: Rhys Mainwaring --- gz-waves/include/gz/waves/Algorithm.hh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gz-waves/include/gz/waves/Algorithm.hh b/gz-waves/include/gz/waves/Algorithm.hh index 30e15d85..08bb5b3d 100644 --- a/gz-waves/include/gz/waves/Algorithm.hh +++ b/gz-waves/include/gz/waves/Algorithm.hh @@ -87,11 +87,11 @@ std::array sort_indexes(const std::array& v) { /// template void unordered_unique( - Iterator first, Iterator last, - std::vector* unique, - std::vector* index = nullptr, - std::vector* inverse = nullptr, - std::vector* count = nullptr) + Iterator first, Iterator last, + std::vector* unique, + std::vector* index = nullptr, + std::vector* inverse = nullptr, + std::vector* count = nullptr) { using index_map = std::unordered_map; using map_iter = typename index_map::iterator;