From 7d88e2ec6b077c02d38a31a6025141d5d643cdfe Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 7 Jul 2019 11:51:34 +0300 Subject: [PATCH] - fixed compilation with GCC 5 and newer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit src/r_data/a_dynlightdata.cpp:72:44: error: no matching function for call to ‘FSerializer::Array(const char [5], int [5], int, std::nullptr_t)’ --- src/r_data/a_dynlightdata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_data/a_dynlightdata.cpp b/src/r_data/a_dynlightdata.cpp index f3bcf56c0..c20c8d2e9 100644 --- a/src/r_data/a_dynlightdata.cpp +++ b/src/r_data/a_dynlightdata.cpp @@ -69,7 +69,7 @@ FSerializer &Serialize(FSerializer &arc, const char *key, FLightDefaults &value, if (arc.BeginObject(key)) { arc("name", value.m_Name) - .Array("args", value.m_Args, 5, nullptr) + .Array("args", value.m_Args, 5) ("param", value.m_Param) ("pos", value.m_Pos) ("type", value.m_type)