Commit ec45a042 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fixed missing return statement in DistributedArrayView.

parent 4f5d82cf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -518,8 +518,8 @@ print( std::ostream& str ) const
      }
      str << " ]";
   }
   else send( this->localData, 0, 0, this->group );
   return str;*/
   else send( this->localData, 0, 0, this->group );*/
   return str;
}

} // namespace Containers