commit | ec28fc349987fa9cd9a05680ea5e81d9a9b35ce3 | [log] [tgz] |
---|---|---|
author | Zachary Turner <zturner@google.com> | Wed May 04 20:32:13 2016 +0000 |
committer | Zachary Turner <zturner@google.com> | Wed May 04 20:32:13 2016 +0000 |
tree | ef1e578dd646cd33f7c938ba4d1bd0daa48e74b6 | |
parent | 4a9578aefeca8f39ddfd8e33f1941b00becb3395 [diff] [blame] |
Move pdb code into pdb namespace. llvm-svn: 268544
diff --git a/llvm/tools/llvm-pdbdump/VariableDumper.h b/llvm/tools/llvm-pdbdump/VariableDumper.h index 7d4af8a..4f00358 100644 --- a/llvm/tools/llvm-pdbdump/VariableDumper.h +++ b/llvm/tools/llvm-pdbdump/VariableDumper.h
@@ -15,6 +15,9 @@ namespace llvm { class StringRef; + +namespace pdb { + class LinePrinter; class VariableDumper : public PDBSymDumper { @@ -37,5 +40,5 @@ LinePrinter &Printer; }; } - +} #endif