[PATCH] D118869: [clang-format] Non-latin comment prefix whitespace

Krasimir Georgiev via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Mar 4 01:41:24 PST 2022


krasimir added a comment.
Herald added a project: All.

It appears that this caused a regression by adding an additional space of indentation to line comments in some cases:

  % cat test.cc  # (before)
  // Comment
  int i;
  % clang-format -style=google test.cc
  //  Comment
  int i;

@ksyx could you please take a look?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D118869/new/

https://reviews.llvm.org/D118869



More information about the cfe-commits mailing list