git cl upload has an issue with |UChar* dest| and insists that I run 'git cl format'. When
I ran it, I got the following diff:
typedef int32_t (*case_conversion_fn)(
- UChar* dest, int32_t destCapacity, const UChar* src, int32_t srcLength,
+ UChar * dest, int32_t destCapacity, const UChar* src, int32_t srcLength,
const char* locale, UErrorCode* pErrorCode);
Note that it puts a space *before and after* '*'. That is, it wants 'UChar * dest' instead of 'UChar* dest' or 'Uchar *dest'. It's not consistent, either. In the same line, 'UChar* src'
is not touched.
I'm not using 'Infra-git' because it automatically adds 'scary-sounding' Release-Block labels. :-).
Comment 1 by js...@chromium.org
, Apr 13 2016