|
|
|
|
|
by hot_gril
1254 days ago
|
|
Where I work, the C++ style guide explicitly says not to alias int types like this cause it becomes annoying for others to keep looking up what each thing really is, and probably YAGNI. I agree with that recommendation. Any int variable storing meters is probably called "meters" already. |
|