From 00782c089d0a49f1fba31077d079894357926b8d Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 28 Jan 2007 20:54:30 +0000 Subject: (svn r8446) -Fix (8445): accidentally made a function that should not be abstract abstract. --- src/network/core/udp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/network/core') diff --git a/src/network/core/udp.h b/src/network/core/udp.h index e2ac876a9..4ea170122 100644 --- a/src/network/core/udp.h +++ b/src/network/core/udp.h @@ -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(); } -- cgit v1.2.3-54-g00ecf