From e69e0032e1955615e220b37e21e4a8b87fd22a76 Mon Sep 17 00:00:00 2001 From: Grant Paul Date: Mon, 23 May 2016 17:59:34 -0700 Subject: [PATCH] Add missing includes to fix Linux build. --- Libraries/acdriver/Sources/Driver.cpp | 2 ++ Libraries/pbxbuild/Sources/Tool/Tokens.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Libraries/acdriver/Sources/Driver.cpp b/Libraries/acdriver/Sources/Driver.cpp index a377b7f6..ad054ca2 100644 --- a/Libraries/acdriver/Sources/Driver.cpp +++ b/Libraries/acdriver/Sources/Driver.cpp @@ -15,6 +15,8 @@ #include #include +#include +#include #include using acdriver::Driver; diff --git a/Libraries/pbxbuild/Sources/Tool/Tokens.cpp b/Libraries/pbxbuild/Sources/Tool/Tokens.cpp index 9e1f2bbb..d71eb044 100644 --- a/Libraries/pbxbuild/Sources/Tool/Tokens.cpp +++ b/Libraries/pbxbuild/Sources/Tool/Tokens.cpp @@ -11,6 +11,8 @@ #include #include +#include +#include #include namespace Tool = pbxbuild::Tool;