refactor: PR feedback

Co-authored-by: Carol (Nichols || Goulding) <193874+carols10cents@users.noreply.github.com>
pull/24376/head
Edd Robinson 2020-07-13 15:52:41 +01:00 committed by GitHub
parent 51fcf59da9
commit 999ba44fad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ impl BlockData {
pub fn reserve_exact(&mut self, additional: usize) {
match self {
Self::Float { i: _, ts, values } => {
Self::Float { ts, values, .. } => {
ts.reserve_exact(additional);
values.reserve_exact(additional);
}