From: Ilia K Date: Wed, 11 Mar 2015 11:24:10 +0000 (+0000) Subject: Fix build on Windows (PATH_MAX was undefined) after r231858 X-Git-Tag: llvmorg-3.7.0-rc1~9558 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=654e1c2c1ac23853e24c3235cf2cab900f0f9839;p=platform%2Fupstream%2Fllvm.git Fix build on Windows (PATH_MAX was undefined) after r231858 llvm-svn: 231917 --- diff --git a/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp b/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp index 9ea3fad..41974ff 100644 --- a/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp +++ b/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp @@ -35,7 +35,7 @@ #else #include // For the ::access() #endif // _WIN32 -#include +#include // for PATH_MAX // In-house headers: #include "MICmnLLDBDebuggerHandleEvents.h" @@ -50,6 +50,7 @@ #include "MICmnStreamStderr.h" #include "MIUtilDebug.h" #include "MIDriver.h" +#include "Platform.h" // for PATH_MAX on Windows //++ ------------------------------------------------------------------------------------ // Details: CMICmnLLDBDebuggerHandleEvents constructor.