1
1

Fix MPI::IN_PLACE to be (void* const). Fixes trac:1465.

This commit was SVN r19420.

The following Trac tickets were found above:
  Ticket 1465 --> https://svn.open-mpi.org/trac/ompi/ticket/1465
Этот коммит содержится в:
Jeff Squyres 2008-08-26 17:36:08 +00:00
родитель a5efefe980
Коммит 0d618b519f
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -55,7 +55,7 @@ OMPI_DECLSPEC extern const int ERR_WIN;
// assorted constants
OMPI_DECLSPEC extern void* const BOTTOM;
OMPI_DECLSPEC extern const void* IN_PLACE;
OMPI_DECLSPEC extern void* const IN_PLACE;
OMPI_DECLSPEC extern const int PROC_NULL;
OMPI_DECLSPEC extern const int ANY_SOURCE;
OMPI_DECLSPEC extern const int ROOT;

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

@ -54,7 +54,7 @@ int mpi_errno = MPI_SUCCESS;
void* const BOTTOM = (void*) MPI_BOTTOM;
const void* IN_PLACE = (void*) MPI_IN_PLACE;
void* const IN_PLACE = (void*) MPI_IN_PLACE;
// return codes
const int SUCCESS = MPI_SUCCESS;