diff --git a/include/reflection-cpp/reflection.hpp b/include/reflection-cpp/reflection.hpp index 0b7c857..9c2850f 100644 --- a/include/reflection-cpp/reflection.hpp +++ b/include/reflection-cpp/reflection.hpp @@ -139,7 +139,7 @@ template requires(std::is_aggregate_v>) constexpr inline auto CountMembers = detail::CountMembers>; -constexpr size_t MaxReflectionMemerCount = 150; +constexpr size_t MaxReflectionMemberCount = 150; /** @@ -178,7 +178,7 @@ elisp functions to fill the ToTuple function **/ template > - requires(N <= MaxReflectionMemerCount) + requires(N <= MaxReflectionMemberCount) constexpr decltype(auto) ToTuple(T&& t) noexcept { if constexpr (N == 0)