From: David Wells Date: Sat, 18 Apr 2015 15:58:13 +0000 (-0400) Subject: Use full words for variable names. X-Git-Tag: v8.3.0-rc1~245^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48fdc9d3e8c25f41736a77245806812926407740;p=dealii.git Use full words for variable names. --- 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); }