diff options
Diffstat (limited to 'lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp')
| -rw-r--r-- | lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp | 11 | 
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp b/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp index 54d6835f11215..3b5a2accdba65 100644 --- a/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp +++ b/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp @@ -32,15 +32,20 @@ InfoStreamBuilder::InfoStreamBuilder(msf::MSFBuilder &Msf,  void InfoStreamBuilder::setVersion(PdbRaw_ImplVer V) { Ver = V; } +void InfoStreamBuilder::addFeature(PdbRaw_FeatureSig Sig) { +  Features.push_back(Sig); +} + +void InfoStreamBuilder::setHashPDBContentsToGUID(bool B) { +  HashPDBContentsToGUID = B; +} +  void InfoStreamBuilder::setAge(uint32_t A) { Age = A; }  void InfoStreamBuilder::setSignature(uint32_t S) { Signature = S; }  void InfoStreamBuilder::setGuid(GUID G) { Guid = G; } -void InfoStreamBuilder::addFeature(PdbRaw_FeatureSig Sig) { -  Features.push_back(Sig); -}  Error InfoStreamBuilder::finalizeMsfLayout() {    uint32_t Length = sizeof(InfoStreamHeader) +  | 
