(svn r8446) -Fix (8445): accidentally made a function that should not be abstract abstract.
authorrubidium
Sun, 28 Jan 2007 20:54:30 +0000
changeset 6116 3c464a271d89
parent 6115 c5bde03ec914
child 6117 b50b5ebc1c98
(svn r8446) -Fix (8445): accidentally made a function that should not be abstract abstract.
src/network/core/udp.h
--- a/src/network/core/udp.h	Sun Jan 28 20:47:25 2007 +0000
+++ b/src/network/core/udp.h	Sun Jan 28 20:54:30 2007 +0000
@@ -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(); }