From 48fdc9d3e8c25f41736a77245806812926407740 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 18 Apr 2015 11:58:13 -0400 Subject: [PATCH] Use full words for variable names. --- include/deal.II/lac/block_vector.templates.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/deal.II/lac/block_vector.templates.h b/include/deal.II/lac/block_vector.templates.h index d89831e31d..288c48dc32 100644 --- a/include/deal.II/lac/block_vector.templates.h +++ b/include/deal.II/lac/block_vector.templates.h @@ -92,11 +92,11 @@ BlockVector::BlockVector (const TrilinosWrappers::BlockVector &v) template -void BlockVector::reinit (const unsigned int n_bl, - const size_type bl_sz, +void BlockVector::reinit (const unsigned int n_blocks, + const size_type block_size, const bool fast) { - std::vector block_sizes(n_bl, bl_sz); + std::vector block_sizes(n_blocks, block_size); reinit(block_sizes, fast); } -- 2.39.5