diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-06-01 14:08:26 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-06-01 14:08:26 +0100 |
commit | 950cf865ba59b50f7ea0589b26391080d8974d25 (patch) | |
tree | 0fd6e173b1f6f73ae9c3ff748119158b88b5fe8c /lib/collections.h | |
parent | Add missing include (diff) | |
download | ilt-950cf865ba59b50f7ea0589b26391080d8974d25.tar.bz2 ilt-950cf865ba59b50f7ea0589b26391080d8974d25.tar.xz ilt-950cf865ba59b50f7ea0589b26391080d8974d25.zip |
Reformat with new clang-format
Diffstat (limited to 'lib/collections.h')
-rw-r--r-- | lib/collections.h | 8 |
1 files changed, 2 insertions, 6 deletions
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<typename T, typename E> concept SequentialCollection = requires(T c) { - { - c.size() - } -> std::integral; - { - c.data() - } -> std::same_as<const E *>; + { c.size() } -> std::integral; + { c.data() } -> std::same_as<const E *>; }; template<typename T> concept IterableCollection = std::is_same_v<decltype(std::declval<T>().begin()), decltype(std::declval<T>().end())>; |