Skip to content

Commit

Permalink
chore: change some weird concept
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Jan 5, 2025
1 parent ac1b00e commit 811d71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ll/api/reflection/Reflection.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
namespace ll::reflection {
template <class T>
constexpr bool is_reflectable_v =
std::is_aggregate_v<std::remove_cvref_t<T>> && !requires { typename std::remove_cvref_t<T>::size_type; };
std::is_aggregate_v<std::remove_cvref_t<T>> && !traits::is_std_array_v<std::remove_cvref_t<T>>;

template <class T>
concept Reflectable = is_reflectable_v<T>;
Expand Down

0 comments on commit 811d71c

Please sign in to comment.