fixup! Add assert to Row::grow

Resolves #1337
This commit is contained in:
Joe Wilm 2018-05-29 16:33:00 -07:00
parent c3b7b98d6b
commit c01ce1e6ff
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ impl<T: Copy + Clone> Row<T> {
assert!(self.len() < * cols);
while self.len() != *cols {
self.inner.push(*template);
self.0.push(*template);
}
}