Empty line shouldn't be considered a delimiter.
Following https://reviews.llvm.org/D45763
Differential D45764
[clangd][tests] Fix delimiter handling jkorous on Apr 18 2018, 5:44 AM. Authored by
Details
Diff Detail
Event TimelineComment Actions Oops, thanks! LG, optional suggestion
Comment Actions [ultranit] Sorry, just to be sure - did you really mean any number of dashes if (LineRef.startswith("-") && LineRef.find_first_not_of('-') == llvm::StringRef::npos) or at least three? if (LineRef.startswith("---") && LineRef.find_first_not_of('-') == llvm::StringRef::npos) |