From 4845520225ccad783551da52a4518699f3fe503e Mon Sep 17 00:00:00 2001 From: Redstone1024 <2824517378@qq.com> Date: Tue, 17 Dec 2024 15:53:14 +0800 Subject: [PATCH] fix(range): fix missing explicit namespace qualification of Range::All() --- Redcraft.Utility/Source/Public/Range/AllView.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Redcraft.Utility/Source/Public/Range/AllView.h b/Redcraft.Utility/Source/Public/Range/AllView.h index 2ffa0b7..f04d54b 100644 --- a/Redcraft.Utility/Source/Public/Range/AllView.h +++ b/Redcraft.Utility/Source/Public/Range/AllView.h @@ -152,9 +152,9 @@ NODISCARD FORCEINLINE constexpr auto All(R&& InRange) /** Creates A view adapter that includes all elements of a range. */ NODISCARD FORCEINLINE constexpr auto All() { - return TAdaptorClosure([] requires (requires { All(DeclVal()); }) (R&& Base) + return TAdaptorClosure([] requires (requires { Range::All(DeclVal()); }) (R&& Base) { - return All(Forward(Base)); + return Range::All(Forward(Base)); }); }