From 18a7668efc4cbc4f7f310a23d73b3d49a9f0824d Mon Sep 17 00:00:00 2001 From: Dmitry Atamanov Date: Thu, 18 Jun 2026 14:59:48 +0500 Subject: [PATCH] Fix typo --- include/reflection-cpp/reflection.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)