File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -600,3 +600,5 @@ BitstreamRemarkParser::processRemark(BitstreamRemarkParserHelper &Helper) {
600
600
601
601
return std::move (Result);
602
602
}
603
+ llvm::remarks::BitstreamRemarkParser::BitstreamRemarkParser (StringRef Buf)
604
+ : RemarkParser(Format::Bitstream), ParserHelper(Buf) {}
Original file line number Diff line number Diff line change @@ -45,8 +45,7 @@ struct BitstreamRemarkParser : public RemarkParser {
45
45
46
46
// / Create a parser that expects to find a string table embedded in the
47
47
// / stream.
48
- explicit BitstreamRemarkParser (StringRef Buf)
49
- : RemarkParser(Format::Bitstream), ParserHelper(Buf) {}
48
+ explicit BitstreamRemarkParser (StringRef Buf);
50
49
51
50
Expected<std::unique_ptr<Remark>> next () override ;
52
51
You can’t perform that action at this time.
0 commit comments