Skip to content

Commit 0a09b04

Browse files
Merge pull request #5812 from ggouaillardet/topic/mpi_sizeof_misc_additions
fortran: add CHARACTER and LOGICAL support to MPI_Sizeof()
2 parents 6ed68da + e400104 commit 0a09b04

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ompi/mpi/fortran/base/gen-mpi-sizeof.pl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env perl
22
#
33
# Copyright (c) 2014-2015 Cisco Systems, Inc. All rights reserved.
4-
# Copyright (c) 2015 Research Organization for Information Science
5-
# and Technology (RIST). All rights reserved.
4+
# Copyright (c) 2015-2018 Research Organization for Information Science
5+
# and Technology (RIST). All rights reserved.
66
# $COPYRIGHT$
77
#
88
# Script to generate the overloaded MPI_SIZEOF interfaces and
@@ -156,6 +156,8 @@ sub generate {
156156
queue_sub("complex(real${size})", "complex${size}", "real${size}");
157157
}
158158
}
159+
queue_sub("character", "character");
160+
queue_sub("logical", "logical");
159161

160162
#######################################################
161163

0 commit comments

Comments
 (0)