# HG changeset patch # User rubidium # Date 1170017670 0 # Node ID a339ec477b6bbd031895322fb06c3524991f0d96 # Parent c07f3d0a6cc357a402b15c436bafdb088f21c652 (svn r8446) -Fix (8445): accidentally made a function that should not be abstract abstract. diff --git a/src/network/core/udp.h b/src/network/core/udp.h --- a/src/network/core/udp.h +++ b/src/network/core/udp.h @@ -120,7 +120,7 @@ * the grfconfig list of the NetworkGameInfo. * @param config the GRF to handle */ - virtual void HandleIncomingNetworkGameInfoGRFConfig(GRFConfig *config) = 0; + virtual void HandleIncomingNetworkGameInfoGRFConfig(GRFConfig *config) { NOT_REACHED(); } public: /** On destructing of this class, the socket needs to be closed */ virtual ~NetworkUDPSocketHandler() { this->Close(); }