Jeff Squyres is usually our Fortran expert for this sort of issue, but he's on 
vacation until after the Thanksgiving holiday in the US.  So please expect a 
modest delay in (properly) responding to your question.

-Dave

On Nov 21, 2013, at 9:37 AM, "Gunter, David O" <d...@lanl.gov> wrote:

> We have a user complaining about warnings he is getting from his Fortran 95 
> code.
> 
> The Intel compilers throw out this warning:
> 
> warning #7346: The CHARACTER* form of a CHARACTER declaration is an 
> obsolescent feature in Fortran 95.
> 
> The warning stems from the following two lines in <mpi 
> dir>/include/mpif-config.h:
> 
>      character*32 OMPI_GREEK_VERSION
>      character*32 OMPI_SVN_VERSION
> 
> Can we simply change those lines to the following:
> 
>      character(len=32) OMPI_GREEK_VERSION
>      character(len=32) OMPI_SVN_VERSION
> 
> What would break if that happened?
> 
> Thanks,
> david
> --
> David Gunter
> HPC-3
> Los Alamos National Laboratory
> 
> 
> 
> 
> _______________________________________________
> devel mailing list
> de...@open-mpi.org
> http://www.open-mpi.org/mailman/listinfo.cgi/devel

Reply via email to