fix release builds

This commit is contained in:
Eric House 2020-03-17 20:33:24 -07:00
parent 6e27196aed
commit 5cae732a60
2 changed files with 4 additions and 0 deletions

View file

@ -232,6 +232,8 @@ static void logAddrs( const CommsCtxt* comms, const char* caller );
# else
# define printQueue( comms )
# define logAddr( comms, addr, caller)
# define logAddrs( comms, caller )
# endif
#endif
#if defined RELAY_HEARTBEAT || defined COMMS_HEARTBEAT

View file

@ -760,6 +760,7 @@ player_timePenalty( CurGameInfo* gi, XP_U16 playerNum )
return result;
} /* player_timePenalty */
#ifdef DEBUG
void
game_logGI( const CurGameInfo* gi, const char* msg )
{
@ -776,6 +777,7 @@ game_logGI( const CurGameInfo* gi, const char* msg )
XP_LOGF( " gameID: %d", gi->gameID );
XP_LOGF( " dictName: %s", gi->dictName );
}
#endif
#ifdef CPLUS
}