From 0b07910ad847a8c4431b8be244b7105b7b23f6e2 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Tue, 3 Mar 2026 04:16:31 +0100 Subject: fix crash on extend_multi --- common/object/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'common/object/src/lib.rs') diff --git a/common/object/src/lib.rs b/common/object/src/lib.rs index 783871b..3be4d6f 100644 --- a/common/object/src/lib.rs +++ b/common/object/src/lib.rs @@ -20,7 +20,6 @@ pub use path::*; pub use tag::*; pub use value::*; -use core::{marker::Sized, todo}; use std::{collections::BTreeSet, hash::Hash, marker::PhantomData}; #[derive(Hash, PartialEq, Eq)] @@ -195,7 +194,7 @@ impl Object { if any_new { self.insert_multi(TypedTag::::new(tag.0), &new_vals) } else { - todo!() + self.to_owned() } } #[must_use] -- cgit v1.3