1
1

Merge pull request #1723 from hjelmn/warning_fixes

win: fix warnings
Этот коммит содержится в:
Nathan Hjelm 2016-05-27 12:26:04 -06:00
родитель e5ee7adbe0 0adfb328e1
Коммит 3974987ba3
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -46,7 +46,7 @@ opal_pointer_array_t ompi_mpi_windows = {{0}};
ompi_predefined_win_t ompi_mpi_win_null = {{{0}}};
ompi_predefined_win_t *ompi_mpi_win_null_addr = &ompi_mpi_win_null;
mca_base_var_enum_t *ompi_win_accumulate_ops = NULL;
mca_base_var_enum_t *ompi_win_accumulate_order = NULL;
mca_base_var_enum_flag_t *ompi_win_accumulate_order = NULL;
static mca_base_var_enum_value_t accumulate_ops_values[] = {
{.value = OMPI_WIN_ACCUMULATE_OPS_SAME_OP_NO_OP, .string = "same_op_no_op",},

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

@ -68,7 +68,7 @@ enum ompi_win_accumulate_order_flags_t {
};
OMPI_DECLSPEC extern mca_base_var_enum_t *ompi_win_accumulate_ops;
OMPI_DECLSPEC extern mca_base_var_enum_t *ompi_win_accumulate_order;
OMPI_DECLSPEC extern mca_base_var_enum_flag_t *ompi_win_accumulate_order;
OMPI_DECLSPEC extern opal_pointer_array_t ompi_mpi_windows;