-
Notifications
You must be signed in to change notification settings - Fork 938
[Clean-up] Clang-format some existing files #3179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
3ec466f
to
74e10e3
Compare
74e10e3
to
d332bb8
Compare
@@ -120,7 +120,7 @@ enum MinMaxEvalType { kEvalMin, kEvalMax }; | |||
template <typename T> | |||
struct MinMaxReducerCompare { | |||
MinMaxReducerCompare() = delete; | |||
MinMaxReducerCompare(MinMaxEvalType evalType) : type_(evalType){}; | |||
MinMaxReducerCompare(MinMaxEvalType evalType) : type_(evalType) {}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe the Google style rules say that a space is not allowed between the parenthesis and the brace, and my IDE with it's auto formatting agrees. But the Pigweed style checker says that this is wrong and spacing must be there. I am much interested in your final resolution of this. This difference has only appeared in the last year or so.
BUG=SImple-clean-up