[MPI3 Fortran] Change character string declarations?
    Bill Long 
    longb at cray.com
       
    Wed May 26 15:49:16 CDT 2010
    
    
  
Rasmussen, Craig wrote:
> I would like to change all places in the MPI-3 standard with character
> string dummy argument declarations such as,
> 
>     CHARACTER*(*) KEY, VALUE
> 
> to
> 
>     CHARACTER(len=*) :: KEY, VALUE
The len= part is maybe a little much.  But I would certainly prefer
    character(*)
over
    character*(*)
and, similarly,
   character
over
   character*1
and also
   character(8)
over
   character*8
Cheers,
Bill
> 
> Comments?  Would we want to add a kind parameter too?
> 
> -craig
> _______________________________________________
> mpi3-fortran mailing list
> mpi3-fortran at lists.mpi-forum.org
> http://lists.mpi-forum.org/mailman/listinfo.cgi/mpi3-fortran
-- 
Bill Long                                           longb at cray.com
Fortran Technical Support    &                 voice: 651-605-9024
Bioinformatics Software Development            fax:   651-605-9142
Cray Inc./Cray Plaza, Suite 210/380 Jackson St./St. Paul, MN 55101
    
    
More information about the mpiwg-fortran
mailing list