diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-10-19 21:17:25 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-10-19 21:17:25 +0000 |
commit | 49358d85d7284d46c6a115f8767460fbb16734a5 (patch) | |
tree | efe996cfd6870ec254b0ed5b9e9a47fa1c1efbde | |
parent | 3759a0361ec00e03584cb6f9ce64fb1f1c947336 (diff) |
Re-order includes so that the logic involving '#ifdef LLVM_ON_WIN32' appears after the main #includes. The ultimate solution is to just use LLVM-portable methods in llvm/System.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84534 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/CIndex/CIndex.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/CIndex/CIndex.cpp b/tools/CIndex/CIndex.cpp index cc49ee4236..9bc3c70b0e 100644 --- a/tools/CIndex/CIndex.cpp +++ b/tools/CIndex/CIndex.cpp @@ -27,13 +27,14 @@ #include "llvm/System/Path.h" #include "llvm/System/Program.h" #include <cstdio> +#include <vector> + #ifdef LLVM_ON_WIN32 #define WIN32_LEAN_AND_MEAN #include <windows.h> #else #include <dlfcn.h> #endif -#include <vector> using namespace clang; using namespace idx; |