Lokathor/safe_arch

Ensure all macros use primitives via `::core::primitive` paths.

Lokathor opened this issue · 0 comments

Any time that a macro in the crate references a primitive type it needs to say ::core::primitive::type instead of just type.

So any use of i32 should be ::core::primitive::i32 for example.