pokeheartgold
pokeheartgold copied to clipboard
Decide on pointer-star alignment for function return types
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);
IMO this (and all pointer star alignments) should be the same as we already decided
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.