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)); }); }