commit | 16a140287ef1a2bc607d0ee86cf9d696f8eeb667 | [log] [tgz] |
---|---|---|
author | Tommi <tommi@webrtc.org> | Fri Mar 30 11:48:43 2018 |
committer | Commit Bot <commit-bot@chromium.org> | Tue Apr 03 08:49:58 2018 |
tree | b5f5bf8bd65ee860edaaaefeed72f1ed37c3d6c3 | |
parent | bace350feb2cfe7344ae9e231774a214e2e6a86c [diff] |
Remove a couple of unnecessary winsock2.h includes Bug: None Change-Id: I3f36aaff9cc957e5c404e23e99702eb9ff28517d Reviewed-on: https://webrtc-review.googlesource.com/65720 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Tommi <tommi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22702}
diff --git a/modules/audio_coding/neteq/tools/rtp_file_source.cc b/modules/audio_coding/neteq/tools/rtp_file_source.cc index c9ae5f2..0945667 100644 --- a/modules/audio_coding/neteq/tools/rtp_file_source.cc +++ b/modules/audio_coding/neteq/tools/rtp_file_source.cc
@@ -12,9 +12,7 @@ #include <assert.h> #include <string.h> -#ifdef WIN32 -#include <winsock2.h> -#else +#ifndef WIN32 #include <netinet/in.h> #endif
diff --git a/system_wrappers/source/cpu_info.cc b/system_wrappers/source/cpu_info.cc index 5374efb..c17d59d 100644 --- a/system_wrappers/source/cpu_info.cc +++ b/system_wrappers/source/cpu_info.cc
@@ -12,7 +12,6 @@ #if defined(WEBRTC_WIN) #include <windows.h> -#include <winsock2.h> #elif defined(WEBRTC_LINUX) #include <unistd.h> #endif