Ignore:
Timestamp:
10/10/16 16:01:11 (8 years ago)
Author:
mhnguyen
Message:

Reducing length of line of auto-generate Fortran interface

+) Break line into smaller ones to make sure each line is not longer than 132 character

Test
+) Local with gcc4.8
+) Compilation passed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/interface/fortran_attr/izoom_axis_attr.F90

    r787 r966  
    2020      INTEGER  , OPTIONAL, INTENT(IN) :: n 
    2121 
    22       CALL xios(get_zoom_axis_handle)(zoom_axis_id,zoom_axis_hdl) 
     22      CALL xios(get_zoom_axis_handle) & 
     23      (zoom_axis_id,zoom_axis_hdl) 
    2324      CALL xios(set_zoom_axis_attr_hdl_)   & 
    2425      ( zoom_axis_hdl, begin, n ) 
     
    4849 
    4950      IF (PRESENT(begin_)) THEN 
    50         CALL cxios_set_zoom_axis_begin(zoom_axis_hdl%daddr, begin_) 
     51        CALL cxios_set_zoom_axis_begin & 
     52      (zoom_axis_hdl%daddr, begin_) 
    5153      ENDIF 
    5254 
    5355      IF (PRESENT(n_)) THEN 
    54         CALL cxios_set_zoom_axis_n(zoom_axis_hdl%daddr, n_) 
     56        CALL cxios_set_zoom_axis_n & 
     57      (zoom_axis_hdl%daddr, n_) 
    5558      ENDIF 
    5659 
     
    6669      INTEGER  , OPTIONAL, INTENT(OUT) :: n 
    6770 
    68       CALL xios(get_zoom_axis_handle)(zoom_axis_id,zoom_axis_hdl) 
     71      CALL xios(get_zoom_axis_handle) & 
     72      (zoom_axis_id,zoom_axis_hdl) 
    6973      CALL xios(get_zoom_axis_attr_hdl_)   & 
    7074      ( zoom_axis_hdl, begin, n ) 
     
    9498 
    9599      IF (PRESENT(begin_)) THEN 
    96         CALL cxios_get_zoom_axis_begin(zoom_axis_hdl%daddr, begin_) 
     100        CALL cxios_get_zoom_axis_begin & 
     101      (zoom_axis_hdl%daddr, begin_) 
    97102      ENDIF 
    98103 
    99104      IF (PRESENT(n_)) THEN 
    100         CALL cxios_get_zoom_axis_n(zoom_axis_hdl%daddr, n_) 
     105        CALL cxios_get_zoom_axis_n & 
     106      (zoom_axis_hdl%daddr, n_) 
    101107      ENDIF 
    102108 
     
    114120      LOGICAL(KIND=C_BOOL) :: n_tmp 
    115121 
    116       CALL xios(get_zoom_axis_handle)(zoom_axis_id,zoom_axis_hdl) 
     122      CALL xios(get_zoom_axis_handle) & 
     123      (zoom_axis_id,zoom_axis_hdl) 
    117124      CALL xios(is_defined_zoom_axis_attr_hdl_)   & 
    118125      ( zoom_axis_hdl, begin, n ) 
     
    146153 
    147154      IF (PRESENT(begin_)) THEN 
    148         begin__tmp = cxios_is_defined_zoom_axis_begin(zoom_axis_hdl%daddr) 
     155        begin__tmp = cxios_is_defined_zoom_axis_begin & 
     156      (zoom_axis_hdl%daddr) 
    149157        begin_ = begin__tmp 
    150158      ENDIF 
    151159 
    152160      IF (PRESENT(n_)) THEN 
    153         n__tmp = cxios_is_defined_zoom_axis_n(zoom_axis_hdl%daddr) 
     161        n__tmp = cxios_is_defined_zoom_axis_n & 
     162      (zoom_axis_hdl%daddr) 
    154163        n_ = n__tmp 
    155164      ENDIF 
Note: See TracChangeset for help on using the changeset viewer.