1
1

Avoid using /* in the comment (which starts a C comment)

Since this header is included in .F90 files (which are preprocessed,
vs. .f90 files, which are *not* preprocessed), we don't want to
accidentally start C-style comments, which are recognized by some
Fortran compiler preprocessors (e.g., Absoft).

This commit was SVN r29394.
Этот коммит содержится в:
Jeff Squyres 2013-10-08 14:22:55 +00:00
родитель ceecc04bfe
Коммит ad4abdbf53

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

@ -56,8 +56,8 @@
! an address to the first MPI_VAL is exactly the same as passing an
! array of INTEGERS.
!
! Specifically: the back-end C function (in
! ompi/mpi/fortran/mpif-h/*.c) gets an (MPI_Fint*), and it's all good.
! Specifically: the back-end C function (in *.c files in
! ompi/mpi/fortran/mpif-h) gets an (MPI_Fint*), and it's all good.
!
! The key here is that there is a disconnect between Fortran and C:
! we're telling the Fortran compiler what the C interface is, and