1
0
Fork 0

(svn r8446) -Fix (8445): accidentally made a function that should not be abstract abstract.

release/0.6
rubidium 2007-01-28 20:54:30 +00:00
parent f72dde5236
commit 00782c089d
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ protected:
* 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(); }