diff options
Diffstat (limited to 'include/llvm/DebugInfo/PDB/Native/TpiStream.h')
-rw-r--r-- | include/llvm/DebugInfo/PDB/Native/TpiStream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/DebugInfo/PDB/Native/TpiStream.h b/include/llvm/DebugInfo/PDB/Native/TpiStream.h index 9fef9bee5e1a..4579cbf4227b 100644 --- a/include/llvm/DebugInfo/PDB/Native/TpiStream.h +++ b/include/llvm/DebugInfo/PDB/Native/TpiStream.h @@ -47,7 +47,7 @@ public: uint32_t getHashKeySize() const; uint32_t getNumHashBuckets() const; FixedStreamArray<support::ulittle32_t> getHashValues() const; - FixedStreamArray<TypeIndexOffset> getTypeIndexOffsets() const; + FixedStreamArray<codeview::TypeIndexOffset> getTypeIndexOffsets() const; HashTable &getHashAdjusters(); codeview::CVTypeRange types(bool *HadError) const; @@ -62,7 +62,7 @@ private: std::unique_ptr<BinaryStream> HashStream; FixedStreamArray<support::ulittle32_t> HashValues; - FixedStreamArray<TypeIndexOffset> TypeIndexOffsets; + FixedStreamArray<codeview::TypeIndexOffset> TypeIndexOffsets; HashTable HashAdjusters; const TpiStreamHeader *Header; |