Fixes by clang-format

This commit is contained in:
magnesj 2024-04-01 15:24:21 +00:00 committed by github-actions[bot]
parent a522a496f8
commit 2f125806c6

View File

@ -14,11 +14,12 @@ namespace caf
{ {
template <typename T> template <typename T>
concept Vector = requires { concept Vector =
typename T::value_type; // Require the existence of value_type requires {
typename T::allocator_type; // Require the existence of allocator_type typename T::value_type; // Require the existence of value_type
requires std::same_as<T, std::vector<typename T::value_type, typename T::allocator_type>>; // Ensure it's a vector typename T::allocator_type; // Require the existence of allocator_type
}; requires std::same_as<T, std::vector<typename T::value_type, typename T::allocator_type>>; // Ensure it's a vector
};
template <Vector T> template <Vector T>
bool checkIfVector() bool checkIfVector()