hodgesse1 / rfortran

Automatically exported from code.google.com/p/rfortran
0 stars 0 forks source link

avoidable warnings for procedure names with $ #42

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
*** What steps will reproduce the problem?

Compile/build RFortran

*** What is the expected output?

Minimum number of warnings, only those genuinely needed, to avoid
cluttering the compilation diagnostics

*** What do you see instead?

Lots of avoidable warnings pertaining to the $ symbol in procedure names
extracted using the Fortran Module wizard

*** Please provide any additional information below.

I recommend these procedures be renamed at the point of export in the
wizard-generated module by placing them inside interface blocks. The public
name could just differ in not having the $, or maybe some appended ID to
indicate where it came from would be better. Keep the $ names private.

Procedures that USE this module can then use clean names (without the $).
This will confine all these warnings solely to that file. which is seldom
rebuilt.

Note that this will not in any way interfere with the functionality but
will eliminate lots of unnecessary warnings.

Original issue reported on code.google.com by dmitri.k...@gmail.com on 6 Aug 2009 at 6:37

GoogleCodeExporter commented 8 years ago

Original comment by mark.th...@gmail.com on 19 Feb 2010 at 5:24

GoogleCodeExporter commented 8 years ago
Procedures with $names have been renamed at point of export as suggested

Original comment by mark.th...@gmail.com on 4 Mar 2010 at 1:23