forked from OSchip/llvm-project
XCOFF.h - replace StringRef.h include with forward declaration. NFC.
Move StringRef.h include to XCOFF.cpp
This commit is contained in:
parent
2f9fc8d971
commit
7c5fc40060
|
@ -13,10 +13,11 @@
|
|||
#ifndef LLVM_BINARYFORMAT_XCOFF_H
|
||||
#define LLVM_BINARYFORMAT_XCOFF_H
|
||||
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include <cstdint>
|
||||
|
||||
namespace llvm {
|
||||
class StringRef;
|
||||
|
||||
namespace XCOFF {
|
||||
|
||||
// Constants used in the XCOFF definition.
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/BinaryFormat/XCOFF.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
|
|
Loading…
Reference in New Issue