From: bangerth Date: Tue, 25 Dec 2012 14:57:35 +0000 (+0000) Subject: Fix an issue with the Intel compiler (reported by Ted Kord). X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22af21ce87d81df1baad1590c918f78a3e296e59;p=dealii-svn.git Fix an issue with the Intel compiler (reported by Ted Kord). git-svn-id: https://svn.dealii.org/trunk@27853 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/block_indices.h b/deal.II/include/deal.II/lac/block_indices.h index 4e7d626d94..031b9fd5d7 100644 --- a/deal.II/include/deal.II/lac/block_indices.h +++ b/deal.II/include/deal.II/lac/block_indices.h @@ -407,7 +407,8 @@ BlockIndices::global_to_local (const unsigned int i) const while (i < start_indices[block]) --block; - return std::make_pair(block, i-start_indices[block]); + return std::pair(block, + i-start_indices[block]); }