diff options
author | rubidium <rubidium@openttd.org> | 2008-12-29 11:17:12 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-12-29 11:17:12 +0000 |
commit | 42fb037005d8a8ac65d5aa34b6b65acd6b9152b2 (patch) | |
tree | 8ee3e6ea5b999608ecb6f566e5018549f5ae01d7 | |
parent | 662d12731072f2ba61f0eaae32557a99d6dbc1ee (diff) | |
download | openttd-42fb037005d8a8ac65d5aa34b6b65acd6b9152b2.tar.xz |
(svn r14766) -Fix (r14730ish): remove unused typedef.
-rw-r--r-- | src/network/core/tcp.h | 2 |
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 */ |