mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-21 05:53:02 +01:00
Fix function definitions to match their declarations
This makes sure every function is properly declared, which includes proper `extern` wrappers.
This commit is contained in:
@@ -1882,7 +1882,7 @@ void Network::Client_Send_GAMEINFO()
|
||||
server_connection.QueuePacket(std::move(packet));
|
||||
}
|
||||
|
||||
std::string json_stdstring_value(const json_t * string)
|
||||
static std::string json_stdstring_value(const json_t * string)
|
||||
{
|
||||
const char * cstr = json_string_value(string);
|
||||
return cstr == nullptr ? std::string() : std::string(cstr);
|
||||
|
||||
Reference in New Issue
Block a user