bevy/crates/bevy_macro_utils
Michael Nett 1a2646ecc4 Use fully-qualified type names in proc macro. (#3544)
Modifies the code emitted by `derive_label` to use fully-qualified type
names (e.g. `std::boxed::Box` instead of `Box`).

# Objective

- Using unqualified types here causes errors when the proc macro is used in contexts that locally define types with conflicting names (e.g. a local definition of `Box`).

## Solution

- Fully qualify standard types emitted by the proc macro code.
2022-01-04 19:49:37 +00:00
..
src Use fully-qualified type names in proc macro. (#3544) 2022-01-04 19:49:37 +00:00
Cargo.toml Merge New Renderer 2021-11-22 23:57:42 -08:00