From e198bf02ab06bdf7bb0534c9fb8443f05ca7f999 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 29 Dec 2008 11:17:12 +0000 Subject: [PATCH] (svn r14766) -Fix (r14730ish): remove unused typedef. --- src/network/core/tcp.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/network/core/tcp.h b/src/network/core/tcp.h index 84863ca2f0..1f5be946e4 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 */