1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 12:43:36 +01:00

IPDBInjectedSource.h - remove unused includes and forward declarations. NFC.

This commit is contained in:
Simon Pilgrim 2020-05-29 11:17:55 +01:00
parent 3cf67b5e20
commit 3a3e487d2a

View File

@ -9,15 +9,11 @@
#ifndef LLVM_DEBUGINFO_PDB_IPDBINJECTEDSOURCE_H #ifndef LLVM_DEBUGINFO_PDB_IPDBINJECTEDSOURCE_H
#define LLVM_DEBUGINFO_PDB_IPDBINJECTEDSOURCE_H #define LLVM_DEBUGINFO_PDB_IPDBINJECTEDSOURCE_H
#include "llvm/Support/raw_ostream.h" #include <cstdint>
#include <memory>
#include <string> #include <string>
namespace llvm { namespace llvm {
class raw_ostream;
namespace pdb { namespace pdb {
/// IPDBInjectedSource defines an interface used to represent source files /// IPDBInjectedSource defines an interface used to represent source files
/// which were injected directly into the PDB file during the compilation /// which were injected directly into the PDB file during the compilation
/// process. This is used, for example, to add natvis files to a PDB, but /// process. This is used, for example, to add natvis files to a PDB, but