1
1

Some compilers (VC) don't like conversions between int and bool.

This commit was SVN r13043.
Этот коммит содержится в:
George Bosilca 2007-01-08 22:00:49 +00:00
родитель 77452ea8ea
Коммит e72b0c1044

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

@ -512,5 +512,6 @@ ompi_mpi_cxx_grequest_cancel_fn_intercept(void *state, int cancelled)
{
struct MPI::Grequest_intercept_t *data =
(struct MPI::Grequest_intercept_t *) state;
return data->git_cxx_cancel_fn(data->git_extra, (bool) cancelled);
return data->git_cxx_cancel_fn(data->git_extra,
(0 != cancelled ? true : false));
}