forked from OSchip/llvm-project
Include <cstdio> to fix build errors.
This file uses things like fprintf and stderr and <cstdio> is the right header to include. I was getting build errors without it. llvm-svn: 251426
This commit is contained in:
parent
cd6e8cf8c2
commit
6eb683891f
|
@ -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 <cstdio> for fprintf, stderr like entities.
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
|
@ -40,6 +41,7 @@
|
|||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <cctype>
|
||||
#include <cstdio>
|
||||
|
||||
namespace lldb_private
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue