Skip to content

Commit

Permalink
remove premature update container
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmcsherry committed Nov 12, 2023
1 parent 6ea9d1d commit b5a245e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/trace/implementations/ord.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ pub trait Layout {
type KeyOffset: OrdOffset;
/// Offsets to use from vals into updates.
type ValOffset: OrdOffset;
/// Container for updates themselves.
type UpdateContainer: BatchContainer<Item=Self::Target>+Deref<Target=[Self::Target]>+RetainFrom<Self::Target>;
/// Container for update keys.
type KeyContainer:
BatchContainer<Item=<Self::Target as Update>::Key>
Expand All @@ -93,7 +91,6 @@ impl<U: Update+Clone, O: OrdOffset> Layout for Vector<U, O> {
type Target = U;
type KeyOffset = O;
type ValOffset = O;
type UpdateContainer = Vec<U>;
type KeyContainer = Vec<U::Key>;
type ValContainer = Vec<U::Val>;
}
Expand All @@ -111,7 +108,6 @@ where
type Target = U;
type KeyOffset = O;
type ValOffset = O;
type UpdateContainer = Vec<U>;
type KeyContainer = TimelyStack<U::Key>;
type ValContainer = TimelyStack<U::Val>;
}
Expand Down

0 comments on commit b5a245e

Please sign in to comment.