aboutsummaryrefslogtreecommitdiff
path: root/lib/DebugInfo
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2017-11-16 19:41:12 +0000
committerReid Kleckner <rnk@google.com>2017-11-16 19:41:12 +0000
commit0ee27ca3af9e7e3223fb9c68667c3b0d139d84f7 (patch)
treea11acfe525a61179842f930fdbbb2d86b5c86a98 /lib/DebugInfo
parentcc22972e405909cc23f8b6c64ac4b243509e32a7 (diff)
Fix my typo of PDB_TableType
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@318447 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/DebugInfo')
-rw-r--r--lib/DebugInfo/PDB/DIA/DIATable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DebugInfo/PDB/DIA/DIATable.cpp b/lib/DebugInfo/PDB/DIA/DIATable.cpp
index 24454dfb1a2..5705c2370dc 100644
--- a/lib/DebugInfo/PDB/DIA/DIATable.cpp
+++ b/lib/DebugInfo/PDB/DIA/DIATable.cpp
@@ -58,5 +58,5 @@ PDB_TableType DIATable::getTableType() const {
return PDB_TableType::InputAssemblyFiles;
if (Name16 == DiaTable_Dbg)
return PDB_TableType::Dbg;
- return PDBTableType::TableInvalid;
+ return PDB_TableType::TableInvalid;
}