Skip to content

Commit

Permalink
elided_lifetimes_in_associated_constant
Browse files Browse the repository at this point in the history
  • Loading branch information
ManevilleF committed Sep 2, 2023
1 parent 02b520b commit 2219861
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_reflect/src/path/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ impl fmt::Display for Token<'_> {
}
}
impl<'a> Token<'a> {
const SYMBOLS: &[u8] = b".#[]";
const SYMBOLS: &'static [u8] = b".#[]";
fn symbol_from_byte(byte: u8) -> Option<Self> {
match byte {
b'.' => Some(Self::Dot),
Expand Down

0 comments on commit 2219861

Please sign in to comment.