mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
Include <iostream> here, because most people using DEBUG() want to use std::cerr too.
This means that users of this file do not also need to include <iostream>. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15088 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a31f1f7cb2
commit
7d02766247
@ -26,6 +26,9 @@
|
||||
#ifndef SUPPORT_DEBUG_H
|
||||
#define SUPPORT_DEBUG_H
|
||||
|
||||
// Unsurprisingly, most users of this macro use std::cerr too.
|
||||
#include <iostream>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
// DebugFlag - This boolean is set to true if the '-debug' command line option
|
||||
|
@ -26,6 +26,9 @@
|
||||
#ifndef SUPPORT_DEBUG_H
|
||||
#define SUPPORT_DEBUG_H
|
||||
|
||||
// Unsurprisingly, most users of this macro use std::cerr too.
|
||||
#include <iostream>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
// DebugFlag - This boolean is set to true if the '-debug' command line option
|
||||
|
Loading…
Reference in New Issue
Block a user