1
1

Silence compiler warnings, as suggested by Alan Sayre.

This commit was SVN r28544.
Этот коммит содержится в:
Jeff Squyres 2013-05-21 13:42:18 +00:00
родитель 52f4a10c21
Коммит c830d96673

Просмотреть файл

@ -145,5 +145,5 @@ MPI::Op::Is_commutative(void) const
{
int commute;
(void)MPI_Op_commutative(mpi_op, &commute);
return (bool) commute;
return (bool) (commute != 0);
}