================ @@ -1205,14 +1206,23 @@ static size_t countLeadingWhitespace(StringRef Text) { while (Cur < End) { if (isspace(Cur[0])) { ---------------- owenca wrote: ```suggestion if (isWhitespace(Cur[0])) { ``` https://github.com/llvm/llvm-project/pull/145243