mirror of
https://github.com/intel/llvm.git
synced 2026-01-16 21:55:39 +08:00
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:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user