From 950cf865ba59b50f7ea0589b26391080d8974d25 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 1 Jun 2024 14:08:26 +0100 Subject: Reformat with new clang-format --- lib/collections.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'lib/collections.h') diff --git a/lib/collections.h b/lib/collections.h index 5711fc3..ea5d5dc 100644 --- a/lib/collections.h +++ b/lib/collections.h @@ -10,12 +10,8 @@ template concept SequentialCollection = requires(T c) { - { - c.size() - } -> std::integral; - { - c.data() - } -> std::same_as; + { c.size() } -> std::integral; + { c.data() } -> std::same_as; }; template concept IterableCollection = std::is_same_v().begin()), decltype(std::declval().end())>; -- cgit v1.2.3