1
1

Merge pull request #5908 from ggouaillardet/topic/v4.0.x/mpi_sizeof_misc_additions

fortran: add CHARACTER and LOGICAL support to MPI_Sizeof()
Этот коммит содержится в:
Howard Pritchard 2018-10-16 09:16:00 -06:00 коммит произвёл GitHub
родитель c8ff7e3ef2 2b5a7ca816
Коммит e20284ac4d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -1,8 +1,8 @@
#!/usr/bin/env perl
#
# Copyright (c) 2014-2015 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2015 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
# Copyright (c) 2015-2018 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
# $COPYRIGHT$
#
# Script to generate the overloaded MPI_SIZEOF interfaces and
@ -156,6 +156,8 @@ for my $size (qw/32 64 128/) {
queue_sub("complex(real${size})", "complex${size}", "real${size}");
}
}
queue_sub("character", "character");
queue_sub("logical", "logical");
#######################################################