We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We already have consensus on pointer-star alignment for variable declarations, e.g.:
Pokemon *mon; void ZeroMonData(Pokemon *mon);
I don't see any consensus on pointer-star alignment for function return types. Three options:
Pokemon * AllocMonZeroed(u32 heapID); // vs Pokemon* AllocMonZeroed(u32 heapID); // vs Pokemon *AllocMonZeroed(u32 heapID);
The text was updated successfully, but these errors were encountered:
IMO this (and all pointer star alignments) should be the same as we already decided
Sorry, something went wrong.
This issue has had no activity for 60 days and will be marked stale. If there is no further activity, it will be closed in 30 days.
No branches or pull requests
We already have consensus on pointer-star alignment for variable declarations, e.g.:
I don't see any consensus on pointer-star alignment for function return types. Three options:
The text was updated successfully, but these errors were encountered: