Change implementation of syntax::util::SmallVector to use data_structures::SmallVec.
This commit is contained in:
@@ -440,7 +440,7 @@ impl MacResult for DummyResult {
|
||||
if self.expr_only {
|
||||
None
|
||||
} else {
|
||||
Some(SmallVector::zero())
|
||||
Some(SmallVector::new())
|
||||
}
|
||||
}
|
||||
|
||||
@@ -448,7 +448,7 @@ impl MacResult for DummyResult {
|
||||
if self.expr_only {
|
||||
None
|
||||
} else {
|
||||
Some(SmallVector::zero())
|
||||
Some(SmallVector::new())
|
||||
}
|
||||
}
|
||||
|
||||
@@ -456,7 +456,7 @@ impl MacResult for DummyResult {
|
||||
if self.expr_only {
|
||||
None
|
||||
} else {
|
||||
Some(SmallVector::zero())
|
||||
Some(SmallVector::new())
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user