Skip to content
Snippets Groups Projects
Commit 9dd89ba3 authored by Ted Kremenek's avatar Ted Kremenek
Browse files

Re-order includes so that the logic involving '#ifdef LLVM_ON_WIN32' appears...

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.

llvm-svn: 84534
parent 1059b5b3
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment