Skip to content

Commit

Permalink
Made ReflectMut::Tuple enum variant use a mutable reference (#1226)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamaq01 committed Jan 9, 2021
1 parent a6a242c commit 4a08370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_reflect/src/reflect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub enum ReflectRef<'a> {
pub enum ReflectMut<'a> {
Struct(&'a mut dyn Struct),
TupleStruct(&'a mut dyn TupleStruct),
Tuple(&'a dyn Tuple),
Tuple(&'a mut dyn Tuple),
List(&'a mut dyn List),
Map(&'a mut dyn Map),
Value(&'a mut dyn Reflect),
Expand Down

0 comments on commit 4a08370

Please sign in to comment.