Skip to content

Commit 4acf15c

Browse files
committed
add support for 4.24
1 parent 369bdcd commit 4acf15c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

DataSerialization.uplugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"DocsURL": "",
1111
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/51bfff9f8bc34c3d8072b31455965276",
1212
"SupportURL": "https://discord.gg/5hFrK2D",
13-
"EngineVersion": "4.26.0",
13+
"EngineVersion": "4.24.0",
1414
"CanContainContent": false,
1515
"IsBetaVersion": false,
1616
"IsExperimentalVersion": false,

Source/DataSerialization/Private/csv.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5830,7 +5830,7 @@ namespace csv {
58305830

58315831
/** Retrieve this field's value as a long double */
58325832
template<>
5833-
CONSTEXPR long double CSVField::get<long double>() {
5833+
long double CSVField::get<long double>() {
58345834
if (!is_num()) {
58355835
UE_LOG(LogDataSerialization, Error, TEXT("%s; returning 0!"), internals::ERROR_NAN.c_str());
58365836
return 0.0f;

build.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
echo off
22

3-
set LINUX_MULTIARCH_ROOT=C:\UnrealToolchains\v17_clang-10.0.1-centos7\
3+
set LINUX_MULTIARCH_ROOT=C:\UnrealToolchains\v15_clang-10.0.1-centos7\
44
%LINUX_MULTIARCH_ROOT%x86_64-unknown-linux-gnu\bin\clang++ -v
55

6-
"C:\Program Files\Epic Games\UE_4.26\Engine\Build\BatchFiles\RunUAT.bat" ^
6+
"C:\Program Files\Epic Games\UE_4.24\Engine\Build\BatchFiles\RunUAT.bat" ^
77
BuildPlugin ^
88
-Plugin=%CD%\DataSerialization.uplugin ^
99
-Package=%CD%\Dist ^

0 commit comments

Comments
 (0)