Add spaces around binaries and explicit braces.

This commit is contained in:
Markus Blatt 2015-05-19 19:56:37 +02:00
parent be7abe0706
commit e2df1e981c

View File

@ -120,7 +120,9 @@ public:
{
// component the max global index
for( auto i = indexSet_->begin(), end = indexSet_->end(); i != end; ++i )
{
max_gi = std::max(max_gi, i->global());
}
++max_gi;
max_gi = communicator_.max(max_gi);
}