1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-08 07:16:33 -05:00

fix: clang format

This commit is contained in:
JuanCStar
2024-03-12 09:13:35 +01:00
parent e5a954617b
commit 18baf880c4
95 changed files with 257 additions and 258 deletions

View File

@@ -18,9 +18,9 @@ namespace ranges {
template <typename T>
concept range = requires(T& t) {
begin(t);
end(t);
};
begin(t);
end(t);
};
template <typename T>
concept input_range = range<T>;