summarylogtreecommitdiffstats
path: root/UnrealSourceFile-move.patch
diff options
context:
space:
mode:
Diffstat (limited to 'UnrealSourceFile-move.patch')
-rw-r--r--UnrealSourceFile-move.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/UnrealSourceFile-move.patch b/UnrealSourceFile-move.patch
new file mode 100644
index 000000000000..29873f69d59a
--- /dev/null
+++ b/UnrealSourceFile-move.patch
@@ -0,0 +1,13 @@
+--- UnrealSourceFile.cpp 2018-10-12 22:40:20.667309568 -0500
++++ UnrealSourceFile.cpp_new 2018-10-12 22:39:50.387963519 -0500
+@@ -46,7 +46,9 @@
+ }
+ }
+
+- return Out;
++ typedef FStringOutputDevice &FStringOutputDeviceRef;
++ FStringOutputDeviceRef &&Out_ref = Out;
++ return (FStringOutputDevice&&)Out_ref;
+ }
+
+ FString FUnrealSourceFile::GetStrippedFilename() const