Splits a very long line.

This commit is contained in:
Markus Blatt 2015-11-13 15:52:01 +01:00
parent 8148c37d57
commit 5449047682

View File

@ -370,7 +370,9 @@ namespace Opm
#if HAVE_MPI #if HAVE_MPI
if ( solver_.parallelInformation().type() == typeid(ParallelISTLInformation) ) if ( solver_.parallelInformation().type() == typeid(ParallelISTLInformation) )
{ {
global_number_resv_wells = boost::any_cast<const ParallelISTLInformation&>(solver_.parallelInformation()).communicator().sum(global_number_resv_wells); const auto& info =
boost::any_cast<const ParallelISTLInformation&>(solver_.parallelInformation());
global_number_resv_wells = info.communicator().sum(global_number_resv_wells);
if ( global_number_resv_wells ) if ( global_number_resv_wells )
{ {
// At least one process has resv wells. Therefore rate converter needs // At least one process has resv wells. Therefore rate converter needs