Skip to content

Commit 8feddcd

Browse files
committed
Fixed extended initializer lists syntax for C++98.
1 parent c07857d commit 8feddcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Core/GameEngine/Source/GameNetwork/LANAPIhandlers.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void LANAPI::setProductInfoFromMessage(LANMessage *msg, GameSlot *slot)
102102
productInfo.exeCRC = msg->ProductInfo.exeCRC;
103103
productInfo.iniCRC = msg->ProductInfo.iniCRC;
104104

105-
UnicodeString *strings[]
105+
UnicodeString *strings[] =
106106
{
107107
&productInfo.productTitle,
108108
&productInfo.productVersion,
@@ -124,7 +124,7 @@ void LANAPI::sendProductInfoMessage(LANMessage::Type messageType, UnsignedInt se
124124
msg.ProductInfo.exeCRC = TheGlobalData->m_exeCRC;
125125
msg.ProductInfo.iniCRC = TheGlobalData->m_iniCRC;
126126

127-
const UnicodeString strings[]
127+
const UnicodeString strings[] =
128128
{
129129
TheVersion->getUnicodeProductTitle(),
130130
TheVersion->getUnicodeProductVersion(),

0 commit comments

Comments
 (0)