You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
TArray documentation and a coupld of methods deprecation.
Changes mostly in Array.h. The changes in other files are only renames for deprecated functions. [CL 2312616 by Jaroslaw Palczynski in Main branch]
This commit is contained in:
committed by
UnrealBot
parent
8ed278ece8
commit
65ba5d456f
@@ -740,7 +740,7 @@ int32 UDiffPackagesCommandlet::Main(const FString& Params)
|
||||
{
|
||||
if ( Comparison.ObjectSets[PackageIndex] != NULL )
|
||||
{
|
||||
AllObjectSets[PackageIndex].AddRawItem(Comparison.ObjectSets[PackageIndex]);
|
||||
AllObjectSets[PackageIndex].Add(Comparison.ObjectSets[PackageIndex]);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -763,7 +763,7 @@ int32 UDiffPackagesCommandlet::Main(const FString& Params)
|
||||
{
|
||||
if ( Comparison.ObjectSets[PackageIndex] != NULL )
|
||||
{
|
||||
AllObjectSets[PackageIndex].AddRawItem(Comparison.ObjectSets[PackageIndex]);
|
||||
AllObjectSets[PackageIndex].Add(Comparison.ObjectSets[PackageIndex]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user