-
-
Notifications
You must be signed in to change notification settings - Fork 57
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
Create format.yml #10
Conversation
uint8_t ans[16] = {0};\ | ||
vsm(ans, vmslt(a, 0, vl), vl);\ | ||
return reinterpret_cast<int*>(ans)[0];\ | ||
uint8_t and[16] = {0};\ | ||
vsm(and, vmslt(a, 0, vl), vl);\ | ||
return reinterpret_cast<int*>(and)[0];\ |
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.
@sergiossm this is the only spelling change that I see in actual code that might cause issues. Can you review if this is ok?
I don't see any other examples of a variable name ans
anywhere in the code, so I'm assuming this is ok, but maybe to be safe you could re-write this variable with an actual name, i.e. answer
?
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.
@sergiossm I'm mergint this PR now to get this done, but please update these 3 variables if needed in a separate PR.
π οΈ PR Summary
Made with β€οΈ by Ultralytics Actions
π Summary
Automatic code formatting and documentation standards enforcement for Ultralytics Flutter app.
π Key Changes
format.yml
) for automatic code and documentation formatting in PRs.README.md
and removed redundant spaces and newlines in documentation files.π― Purpose & Impact