Skip to content

Commit

Permalink
fix bytes feature compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai Schmidt committed Jan 3, 2024
1 parent 81da928 commit 73038f2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/algorithm/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,7 @@ impl<'a> PairMut<'a> {
(Value::Box(a), Value::Complex(b)) => grow_impl(a, b, new_cap),
(Value::Box(a), Value::Char(b)) => grow_impl(a, b, new_cap),
(Value::Box(a), Value::Box(b)) => grow_impl(a, b, new_cap),
#[cfg(feature = "bytes")]
(Value::Num(_), Value::Byte(_))
| (Value::Byte(_), Value::Num(_))
| (Value::Byte(_), Value::Byte(_))
Expand Down

0 comments on commit 73038f2

Please sign in to comment.