Change implementation of syntax::util::SmallVector to use data_structures::SmallVec.

This commit is contained in:
Mark-Simulacrum
2016-11-02 22:33:35 -06:00
parent 4da129d984
commit 7bbebb1f54
15 changed files with 575 additions and 288 deletions

View File

@@ -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())
}
}