diff options
Diffstat (limited to 'include/llvm/DebugInfo/PDB/Native')
-rw-r--r-- | include/llvm/DebugInfo/PDB/Native/ModStream.h | 2 | ||||
-rw-r--r-- | include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/include/llvm/DebugInfo/PDB/Native/ModStream.h b/include/llvm/DebugInfo/PDB/Native/ModStream.h index d65e195dbb95b..b12d4ff375f32 100644 --- a/include/llvm/DebugInfo/PDB/Native/ModStream.h +++ b/include/llvm/DebugInfo/PDB/Native/ModStream.h @@ -40,6 +40,8 @@ public: iterator_range<codeview::ModuleSubstreamArray::Iterator> lines(bool *HadError) const; + bool hasLineInfo() const; + Error commit(); private: diff --git a/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h b/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h index cffb5d09d225b..e1e78035ff389 100644 --- a/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h +++ b/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h @@ -101,7 +101,8 @@ public: uint32_t getVirtualBaseDispIndex() const override; uint32_t getVirtualBaseOffset() const override; uint32_t getVirtualTableShapeId() const override; - std::unique_ptr<PDBSymbolTypeVTable> getVirtualBaseTableType() const override; + std::unique_ptr<PDBSymbolTypeBuiltin> + getVirtualBaseTableType() const override; PDB_DataKind getDataKind() const override; PDB_SymType getSymTag() const override; PDB_UniqueId getGuid() const override; |