fix: CLang fix

This commit is contained in:
Akatsuki Levi 2024-03-15 21:03:47 -03:00
parent c33ccfaa71
commit 94a84f5943
No known key found for this signature in database
GPG key ID: BB4057BB9E0F1C7A
95 changed files with 261 additions and 259 deletions

View file

@ -103,9 +103,9 @@ concept IsRBEntry = CheckRBEntry<T>::value;
template <typename T>
concept HasRBEntry = requires(T& t, const T& ct) {
{ t.GetRBEntry() } -> std::same_as<RBEntry<T>&>;
{ ct.GetRBEntry() } -> std::same_as<const RBEntry<T>&>;
};
{ t.GetRBEntry() } -> std::same_as<RBEntry<T>&>;
{ ct.GetRBEntry() } -> std::same_as<const RBEntry<T>&>;
};
template <typename T>
requires HasRBEntry<T>