From: Duncan Sands Date: Wed, 9 Jan 2008 19:42:09 +0000 (+0000) Subject: Fix compile failures with g++-4.3. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f52e32aab0422407cc8def93348667c255bb5d80;p=oota-llvm.git Fix compile failures with g++-4.3. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45781 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/System/DynamicLibrary.cpp b/lib/System/DynamicLibrary.cpp index eebd2b1f169..a21f16ab327 100644 --- a/lib/System/DynamicLibrary.cpp +++ b/lib/System/DynamicLibrary.cpp @@ -13,6 +13,7 @@ #include "llvm/System/DynamicLibrary.h" #include "llvm/Config/config.h" +#include #include // Collection of symbol name/value pairs to be searched prior to any libraries. diff --git a/lib/System/Path.cpp b/lib/System/Path.cpp index 144959755ef..6f0667fba50 100644 --- a/lib/System/Path.cpp +++ b/lib/System/Path.cpp @@ -14,6 +14,7 @@ #include "llvm/System/Path.h" #include "llvm/Config/config.h" #include +#include #include using namespace llvm; using namespace sys;