From: Wolfgang Bangerth Date: Tue, 8 May 2018 08:34:06 +0000 (+0800) Subject: Break a statement in a way that is easier to read. X-Git-Tag: v9.1.0-rc1~1182^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f5eac2909aa57d2317ce291e0e95920d4afa8fe;p=dealii.git Break a statement in a way that is easier to read. --- diff --git a/include/deal.II/lac/constraint_matrix.h b/include/deal.II/lac/constraint_matrix.h index 6e5a3a771f..b49fe069d5 100644 --- a/include/deal.II/lac/constraint_matrix.h +++ b/include/deal.II/lac/constraint_matrix.h @@ -1785,8 +1785,8 @@ void ConstraintMatrix::distribute_local_to_global ( const ConstraintLine &position = lines[lines_cache[calculate_line_index(*local_indices_begin)]]; for (size_type j=0; j::add(*local_vector_begin * - position.entries[j].second, position.entries[j].first, + internal::ElementAccess::add((*local_vector_begin) * position.entries[j].second, + position.entries[j].first, global_vector); } }