Skip to content

Commit bd84def

Browse files
author
Markus Westerlind
committed
Add UNificationStorage back
1 parent f10d1d3 commit bd84def

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/unify/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ pub struct UnificationTable<S> {
184184
values: S,
185185
}
186186

187-
pub type UnificationTableStorage<K> = UnificationTable<InPlace<K, Vec<VarValue<K>>, ()>>;
187+
pub type UnificationStorage<K> = Vec<VarValue<K>>;
188+
pub type UnificationTableStorage<K> = UnificationTable<InPlace<K, UnificationStorage<K>, ()>>;
188189

189190
/// A unification table that uses an "in-place" vector.
190191
#[allow(type_alias_bounds)]

0 commit comments

Comments
 (0)