You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compiler is now firing warnings for things like non-CamelCase type names - hopefully that will help clean these up.
I agree that the module structure should be documented. I am not hugely concerned about the layout - I would like to one day add additional targets (other than pure 32-bit x86) so having a module layout that can cater to that will be important.
Inconsistency should be avoided where possible.
Rust itself uses
UpperCamelCase
for non-primitive type names and traits, while the current code base has a few structures usinglowercasewithnospaces
.For the module structure, for example,
io/x86
is preffered overarch/x86/io
, and allows for easy automatic import:The text was updated successfully, but these errors were encountered: