Before:
void f() { f(float(1), a *a); }
After:
void f() { f(float(1), a * a); }
Signed-off-by: Yilong Guo <yilong.guo@intel.com>
Differential D103589
[Format] Fix incorrect pointer detection Nuullll on Jun 2 2021, 10:12 PM. Authored by
Details Before: void f() { f(float(1), a *a); } After: void f() { f(float(1), a * a); } Signed-off-by: Yilong Guo <yilong.guo@intel.com>
Diff Detail
Event TimelineComment Actions Thanks for looking into this, but please add a test case that demonstrates the bug to FormatTests.cpp Comment Actions Thanks for the comment. Comment Actions LGTM. Thanks for fixing this! Comment Actions I don't have commit access. I'd appreciate it if you or someone else could land this patch for me :) |