Skip to content

Commit 9755531

Browse files
committed
Fix MSRV clippy error
1 parent a5b3027 commit 9755531

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

crates/providers/src/data_tree.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ pub struct DataTreeBranch<T> {
3333
keys: HashMap<String, usize>,
3434
}
3535

36+
impl<T> Default for DataTreeBranch<T> {
37+
fn default() -> Self {
38+
Self::new()
39+
}
40+
}
41+
3642
impl<T> DataTreeBranch<T> {
3743
/// Construct a new empty [`DataTreeBranch`]
3844
pub fn new() -> Self {

0 commit comments

Comments
 (0)