From 6c04259c39ab93e0d983ff9f547a97ae26519dce Mon Sep 17 00:00:00 2001 From: Mike Gelfand Date: Sat, 30 May 2015 15:44:17 +0000 Subject: [PATCH] Remove useless ws2tcpip.h include in net.h It's already included above, and QT_DLL condition is meaningless since net.h is only being used inside libtransmission which doesn't use Qt. --- libtransmission/net.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libtransmission/net.h b/libtransmission/net.h index dca6b774a..ba7825c1d 100644 --- a/libtransmission/net.h +++ b/libtransmission/net.h @@ -176,10 +176,4 @@ char* tr_net_strerror (char * buf, size_t buflen, int err); const unsigned char *tr_globalIPv6 (void); -#if defined (_WIN32) && !defined (QT_DLL) -/* The QT exclusion is because something clashes whith the next include */ -#include /* socklen_t */ - -#endif - #endif /* _TR_NET_H_ */