summaryrefslogtreecommitdiff
path: root/tools/llvm-pdbdump/VariableDumper.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/llvm-pdbdump/VariableDumper.h')
-rw-r--r--tools/llvm-pdbdump/VariableDumper.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/llvm-pdbdump/VariableDumper.h b/tools/llvm-pdbdump/VariableDumper.h
index db8d8ea0e4305..4f00358878c94 100644
--- a/tools/llvm-pdbdump/VariableDumper.h
+++ b/tools/llvm-pdbdump/VariableDumper.h
@@ -11,10 +11,13 @@
#define LLVM_TOOLS_LLVMPDBDUMP_VARIABLEDUMPER_H
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
-#include "llvm/ADT/StringRef.h"
namespace llvm {
+class StringRef;
+
+namespace pdb {
+
class LinePrinter;
class VariableDumper : public PDBSymDumper {
@@ -37,5 +40,5 @@ private:
LinePrinter &Printer;
};
}
-
+}
#endif