diff options
author | Zachary Turner <zturner@google.com> | 2017-05-02 18:00:13 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-05-02 18:00:13 +0000 |
commit | e204a6c9a3d290907e90742a53c10a2f12779945 (patch) | |
tree | b220e2fcb8a48770a10a116aa415ba6a47b97b8b /llvm/tools/llvm-pdbdump/C13DebugFragmentVisitor.cpp | |
parent | 57f5046b4af5893a8d598f9d9043ce8c47b58bcb (diff) | |
download | bcm5719-llvm-e204a6c9a3d290907e90742a53c10a2f12779945.tar.gz bcm5719-llvm-e204a6c9a3d290907e90742a53c10a2f12779945.zip |
Rename pdb::StringTable -> pdb::PDBStringTable.
With the forthcoming codeview::StringTable which a pdb::StringTable
would hold an instance of as one member, this ambiguity becomes
confusing. Rename to PDBStringTable to avoid this.
llvm-svn: 301948
Diffstat (limited to 'llvm/tools/llvm-pdbdump/C13DebugFragmentVisitor.cpp')
-rw-r--r-- | llvm/tools/llvm-pdbdump/C13DebugFragmentVisitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-pdbdump/C13DebugFragmentVisitor.cpp b/llvm/tools/llvm-pdbdump/C13DebugFragmentVisitor.cpp index 7c680ebb94c..b38b36532a7 100644 --- a/llvm/tools/llvm-pdbdump/C13DebugFragmentVisitor.cpp +++ b/llvm/tools/llvm-pdbdump/C13DebugFragmentVisitor.cpp @@ -13,8 +13,8 @@ #include "llvm/DebugInfo/CodeView/ModuleDebugInlineeLinesFragment.h" #include "llvm/DebugInfo/CodeView/ModuleDebugLineFragment.h" #include "llvm/DebugInfo/PDB/Native/PDBFile.h" +#include "llvm/DebugInfo/PDB/Native/PDBStringTable.h" #include "llvm/DebugInfo/PDB/Native/RawError.h" -#include "llvm/DebugInfo/PDB/Native/StringTable.h" using namespace llvm; using namespace llvm::codeview; |