From: Eli Friedman Date: Thu, 6 Oct 2011 22:24:13 +0000 (+0000) Subject: Add missing include to clang-interpreter example, to make it work on Windows. Patch... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17e279405ed20e71369e9c8ee4d8d720d5ead716;p=clang Add missing include to clang-interpreter example, to make it work on Windows. Patch by Dean Pavlekovic. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141324 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/examples/clang-interpreter/main.cpp b/examples/clang-interpreter/main.cpp index c04f2b5f25..c9734e5fad 100644 --- a/examples/clang-interpreter/main.cpp +++ b/examples/clang-interpreter/main.cpp @@ -22,6 +22,7 @@ #include "llvm/ADT/OwningPtr.h" #include "llvm/ADT/SmallString.h" #include "llvm/Config/config.h" +#include "llvm/ExecutionEngine/JIT.h" #include "llvm/ExecutionEngine/ExecutionEngine.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/raw_ostream.h"