You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
PropertyBag : Fixed FPropertyBagContainerTypes ranged for loop helpers (after changing an array to a TStaticArray)
#rb mikko.mononen [CL 27303180 by jaime cifuentes in ue5-main branch]
This commit is contained in:
@@ -141,10 +141,10 @@ struct STRUCTUTILS_API FPropertyBagContainerTypes
|
||||
return GetArrayHash(PropertyBagContainerTypes.Types.GetData(), PropertyBagContainerTypes.NumContainers);
|
||||
}
|
||||
|
||||
EPropertyBagContainerType* begin() { return &Types[0]; }
|
||||
const EPropertyBagContainerType* begin() const { return &Types[0]; }
|
||||
EPropertyBagContainerType* end() { return &Types[NumContainers]; }
|
||||
const EPropertyBagContainerType* end() const { return &Types[NumContainers]; }
|
||||
EPropertyBagContainerType* begin() { return Types.GetData(); }
|
||||
const EPropertyBagContainerType* begin() const { return Types.GetData(); }
|
||||
EPropertyBagContainerType* end() { return Types.GetData() + NumContainers; }
|
||||
const EPropertyBagContainerType* end() const { return Types.GetData() + NumContainers; }
|
||||
|
||||
protected:
|
||||
static constexpr uint8 MaxNestedTypes = 2;
|
||||
|
||||
Reference in New Issue
Block a user