summarylogtreecommitdiffstats
path: root/UnrealExporter-move.patch
diff options
context:
space:
mode:
Diffstat (limited to 'UnrealExporter-move.patch')
-rw-r--r--UnrealExporter-move.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/UnrealExporter-move.patch b/UnrealExporter-move.patch
deleted file mode 100644
index 41f32d642c91..000000000000
--- a/UnrealExporter-move.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- UnrealExporter.cpp 2018-10-13 13:38:00.979011618 -0500
-+++ UnrealExporter_new.cpp 2018-10-13 23:49:58.100180446 -0500
-@@ -865,7 +865,10 @@
- Output.Logf(TEXT("Components for '%s':\r\n"), *Object->GetFullName());
- ExportProperties(NULL, Output, Object->GetClass(), (uint8*)Object, 2, NULL, NULL, Object, PPF_SubobjectsOnly);
- Output.Logf(TEXT("<--- DONE!\r\n"));
-- return Output;
-+
-+ typedef FStringOutputDevice &FStringOutputDeviceRef;
-+ FStringOutputDeviceRef &&Output_ref = Output;
-+ return (FStringOutputDevice&&)Output_ref;
- }
-
-
-@@ -885,5 +888,7 @@
- const FExportObjectInnerContext Context;
- UExporter::ExportToOutputDevice(&Context, Object, NULL, Archive, TEXT("copy"), 0, PPF_Copy | PPF_DebugDump, false);
-
-- return Archive;
-+ typedef FStringOutputDevice &FStringOutputDeviceRef;
-+ FStringOutputDeviceRef && Archive_ref = Archive;
-+ return (FStringOutputDevice&&)Archive_ref;
- }