leonardchan added a comment.

Hi. Up until this point, we've noticed that this patch can produce different 
formatted files depending on amount of whitespace. For example, given (A):

  #include <stdint.h>
  namespace fuzzing {}

`clang-format` with this patch would produced (B):

  #include <stdint.h>
  namespace fuzzing {
  }

but given (C):

  #include <stdint.h>
  namespace fuzzing {
  
  
  }

would be formatted to (D):

  #include <stdint.h>
  namespace fuzzing {
  
  }

The invocation specifically is `clang-format --style=google file`. Prior to 
this patch, both inputs (A/C) would give the same output:

  #include <stdint.h>
  namespace fuzzing {}

Is this unintended behavior and worth looking into? We have tests for generated 
code that use `clang-format` to attempt to "unify" expected and generated 
output for easy comparison. We would expect that extra whitespace not produce 
different formatted outputs. Thanks.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D93839

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to