summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-12-29 11:17:12 +0000
committerrubidium <rubidium@openttd.org>2008-12-29 11:17:12 +0000
commite198bf02ab06bdf7bb0534c9fb8443f05ca7f999 (patch)
tree8ee3e6ea5b999608ecb6f566e5018549f5ae01d7
parentdeffb584b005d50fb1b4d8687a59d581a214c670 (diff)
downloadopenttd-e198bf02ab06bdf7bb0534c9fb8443f05ca7f999.tar.xz
(svn r14766) -Fix (r14730ish): remove unused typedef.
-rw-r--r--src/network/core/tcp.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/network/core/tcp.h b/src/network/core/tcp.h
index 84863ca2f..1f5be946e 100644
--- a/src/network/core/tcp.h
+++ b/src/network/core/tcp.h
@@ -130,8 +130,6 @@ static inline bool IsValidNetworkClientSocketIndex(ClientIndex index)
#define FOR_ALL_CLIENT_SOCKETS_FROM(d, start) for (d = GetNetworkClientSocket(start); d != NULL; d = (d->index + 1U < GetNetworkClientSocketPoolSize()) ? GetNetworkClientSocket(d->index + 1U) : NULL) if (d->IsValid())
#define FOR_ALL_CLIENT_SOCKETS(d) FOR_ALL_CLIENT_SOCKETS_FROM(d, 0)
-typedef NetworkClientSocket NetworkTCPSocketHandler;
-
#endif /* ENABLE_NETWORK */
#endif /* NETWORK_CORE_TCP_H */