ArchitectureSet.h - reduce raw_ostream.h include to forward declaration. NFC.

Move raw_ostream.h include to ArchitectureSet.cpp.
This commit is contained in:
Simon Pilgrim 2020-05-30 12:36:16 +01:00
parent a8eb06ccff
commit d1765cf197
2 changed files with 4 additions and 1 deletions

View File

@ -13,14 +13,16 @@
#ifndef LLVM_TEXTAPI_MACHO_ARCHITECTURE_SET_H
#define LLVM_TEXTAPI_MACHO_ARCHITECTURE_SET_H
#include "llvm/Support/raw_ostream.h"
#include "llvm/TextAPI/MachO/Architecture.h"
#include <cstddef>
#include <iterator>
#include <limits>
#include <string>
#include <vector>
namespace llvm {
class raw_ostream;
namespace MachO {
class ArchitectureSet {

View File

@ -11,6 +11,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/TextAPI/MachO/ArchitectureSet.h"
#include "llvm/Support/raw_ostream.h"
namespace llvm {
namespace MachO {