Update to latest version of Live Coding. Fixes issues with symbols not being stripped if they can throw an exception during construction.

#rb none

[CL 6602853 by Ben Marsh in Dev-Build branch]
This commit is contained in:
Ben Marsh
2019-05-21 21:03:36 -04:00
parent d803e1ddac
commit fd2852f44f
43 changed files with 1296 additions and 2031 deletions

View File

@@ -263,9 +263,6 @@ void FLiveCodingModule::UpdateModules()
TArray<FModuleStatus> ModuleStatuses;
FModuleManager::Get().QueryModules(ModuleStatuses);
extern void BeginCommandBatch();
BeginCommandBatch();
for (const FModuleStatus& ModuleStatus : ModuleStatuses)
{
if (ModuleStatus.bIsLoaded)
@@ -274,9 +271,6 @@ void FLiveCodingModule::UpdateModules()
ConfigureModule(FName(*ModuleStatus.Name), FullFilePath);
}
}
extern void EndCommandBatch();
EndCommandBatch();
#endif
}