Skip to content

Commit fa1e5d4

Browse files
committed
Revert "Use indexset for where_clauses"
This reverts commit 7a80b58.
1 parent 5203a21 commit fa1e5d4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

chalk-parse/src/ast.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use indexmap::IndexSet;
21
use std::fmt;
32
use string_cache::DefaultAtom as Atom;
43

@@ -187,7 +186,7 @@ pub struct OpaqueTyDefn {
187186
pub variable_kinds: Vec<VariableKind>,
188187
pub name: Identifier,
189188
pub bounds: Vec<QuantifiedInlineBound>,
190-
pub where_clauses: IndexSet<QuantifiedWhereClause>,
189+
pub where_clauses: Vec<QuantifiedWhereClause>,
191190
}
192191

193192
#[derive(Clone, PartialEq, Eq, Debug, Hash)]

0 commit comments

Comments
 (0)