Ensure equals comparator function never reeaches unreachable code
Closes #1360
This commit is contained in:
parent
0c4994b33b
commit
5b76a25932
1 changed files with 1 additions and 1 deletions
|
@ -1003,7 +1003,7 @@ impl Value {
|
||||||
Value::Strand(_) => v == &other.to_datetime(),
|
Value::Strand(_) => v == &other.to_datetime(),
|
||||||
_ => false,
|
_ => false,
|
||||||
},
|
},
|
||||||
_ => unreachable!(),
|
_ => self == other,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue