cargo fmt

This commit is contained in:
Richard Feldman 2020-12-09 08:06:17 -05:00
parent c0a74ab10e
commit fdd3fd14e9

View File

@ -95,8 +95,8 @@ pub enum Expr2 {
elem_var: Variable, // 4B
},
List {
list_var: Variable, // 4B - required for uniqueness of the list
elem_var: Variable, // 4B
list_var: Variable, // 4B - required for uniqueness of the list
elem_var: Variable, // 4B
elems: PoolVec<Expr2>, // 8B
},
If {