1
1

- double declaration of extern "C" make MS compiler complain. Change them to *_C_DECLS.

This commit was SVN r19432.
Этот коммит содержится в:
Shiqing Fan 2008-08-27 15:49:40 +00:00
родитель e393048872
Коммит b82f062f24

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

@ -193,9 +193,7 @@
void ompi_mpi_op_##name##_short_int OMPI_OP_PROTO; \ void ompi_mpi_op_##name##_short_int OMPI_OP_PROTO; \
void ompi_mpi_op_##name##_long_double_int OMPI_OP_PROTO; void ompi_mpi_op_##name##_long_double_int OMPI_OP_PROTO;
#if defined(c_plusplus) || defined(__cplusplus) BEGIN_C_DECLS
extern "C" {
#endif
/** /**
* Handler functions for MPI_MAX * Handler functions for MPI_MAX
@ -449,10 +447,6 @@ extern "C" {
void ompi_mpi_op_three_buff_##name##_short_int OMPI_OP_PROTO_3BUF; \ void ompi_mpi_op_three_buff_##name##_short_int OMPI_OP_PROTO_3BUF; \
void ompi_mpi_op_three_buff_##name##_long_double_int OMPI_OP_PROTO_3BUF; void ompi_mpi_op_three_buff_##name##_long_double_int OMPI_OP_PROTO_3BUF;
#if defined(c_plusplus) || defined(__cplusplus)
extern "C" {
#endif
/** /**
* Handler functions for MPI_MAX * Handler functions for MPI_MAX
*/ */
@ -532,8 +526,6 @@ extern "C" {
*/ */
OMPI_OP_3BUFF_HANDLER_2TYPE(minloc) OMPI_OP_3BUFF_HANDLER_2TYPE(minloc)
#if defined(c_plusplus) || defined(__cplusplus) END_C_DECLS
}
#endif
#endif /* OMPI_OP_PREDEFINED_H */ #endif /* OMPI_OP_PREDEFINED_H */