From c8e1c0945a33b274eeedf55b5c923ef54199fc7b Mon Sep 17 00:00:00 2001 From: Vedant Kumar Date: Tue, 12 Dec 2017 20:19:40 +0000 Subject: [PATCH] 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 --- lldb/source/Utility/SelectHelper.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/source/Utility/SelectHelper.cpp b/lldb/source/Utility/SelectHelper.cpp index a46213f8bfcb..200b2ae42759 100644 --- a/lldb/source/Utility/SelectHelper.cpp +++ b/lldb/source/Utility/SelectHelper.cpp @@ -32,6 +32,7 @@ #define NOMINMAX #include #else +#include #include #endif