summarylogtreecommitdiffstats
path: root/UnrealSourceFile-move.patch
diff options
context:
space:
mode:
authorZerophase2018-10-23 18:59:08 -0500
committerZerophase2018-10-23 19:00:12 -0500
commit2a7406a82e9b8c92697fb22eae9b3c59652faafd (patch)
treeedb973ea915afdfbb99d683a5f1dd957e35cd4d8 /UnrealSourceFile-move.patch
parent646b64b553f8cb2c351ba1296a299ae1d6e647c7 (diff)
downloadaur-2a7406a82e9b8c92697fb22eae9b3c59652faafd.tar.gz
Update to 4.20.3
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