1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-08 23:36:34 -05:00

fix: CLang fix

This commit is contained in:
Akatsuki Levi
2024-03-15 21:03:47 -03:00
parent c33ccfaa71
commit 94a84f5943
95 changed files with 261 additions and 259 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>;