diff --git a/Redcraft.Utility/Source/Public/Templates/Tuple.h b/Redcraft.Utility/Source/Public/Templates/Tuple.h index c2cc9fd..c7c8d0d 100644 --- a/Redcraft.Utility/Source/Public/Templates/Tuple.h +++ b/Redcraft.Utility/Source/Public/Templates/Tuple.h @@ -58,9 +58,13 @@ struct TTupleElementType<0> { }; template struct TTupleElement { +private: + using ValueType = T; ValueType Value; +public: + template constexpr TTupleElement(Type&& Arg) : Value(Forward(Arg))