From 6eb683891fcbf667d59163f1c782b0ea5b1b97fc Mon Sep 17 00:00:00 2001 From: Hafiz Abid Qadeer Date: Tue, 27 Oct 2015 17:56:23 +0000 Subject: [PATCH] Include to fix build errors. This file uses things like fprintf and stderr and is the right header to include. I was getting build errors without it. llvm-svn: 251426 --- lldb/source/Core/CxaDemangle.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/source/Core/CxaDemangle.cpp b/lldb/source/Core/CxaDemangle.cpp index bcc52ff39fe4..7d21138c2899 100644 --- a/lldb/source/Core/CxaDemangle.cpp +++ b/lldb/source/Core/CxaDemangle.cpp @@ -13,6 +13,7 @@ // - Included win32.h for snprintf implementation for MSVC // - Removed constexpr member initialization for MSVC // - Changed argument to alignas() to a literal for MSVC +// - Include for fprintf, stderr like entities. //---------------------------------------------------------------------- #if defined(_MSC_VER) @@ -40,6 +41,7 @@ #include #include #include +#include namespace lldb_private {