diff options
author | Vedant Kumar <vsk@apple.com> | 2017-12-12 20:19:40 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2017-12-12 20:19:40 +0000 |
commit | c8e1c0945a33b274eeedf55b5c923ef54199fc7b (patch) | |
tree | e53c7886e200d94a06c40e4b47458f9d867f3439 /lldb/source/Utility/SelectHelper.cpp | |
parent | 1ce87c70516761e962bb54a6b4e23d9b86d0d682 (diff) | |
download | bcm5719-llvm-c8e1c0945a33b274eeedf55b5c923ef54199fc7b.tar.gz bcm5719-llvm-c8e1c0945a33b274eeedf55b5c923ef54199fc7b.zip |
Add an #include to appease an older clang, NFC
Add in a missing #include that AppleClang-900 complains about when
building with -DLLVM_ENABLE_MODULES.
llvm-svn: 320522
Diffstat (limited to 'lldb/source/Utility/SelectHelper.cpp')
-rw-r--r-- | lldb/source/Utility/SelectHelper.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Utility/SelectHelper.cpp b/lldb/source/Utility/SelectHelper.cpp index a46213f8bfc..200b2ae4275 100644 --- a/lldb/source/Utility/SelectHelper.cpp +++ b/lldb/source/Utility/SelectHelper.cpp @@ -32,6 +32,7 @@ #define NOMINMAX #include <winsock2.h> #else +#include <sys/time.h> #include <sys/select.h> #endif |