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/ireduce_axis_to_scalar_attr.F90

    r891 r966  
    1919      CHARACTER(len = *) , OPTIONAL, INTENT(IN) :: operation 
    2020 
    21       CALL xios(get_reduce_axis_to_scalar_handle)(reduce_axis_to_scalar_id,reduce_axis_to_scalar_hdl) 
     21      CALL xios(get_reduce_axis_to_scalar_handle) & 
     22      (reduce_axis_to_scalar_id,reduce_axis_to_scalar_hdl) 
    2223      CALL xios(set_reduce_axis_to_scalar_attr_hdl_)   & 
    2324      ( reduce_axis_to_scalar_hdl, operation ) 
     
    4546 
    4647      IF (PRESENT(operation_)) THEN 
    47         CALL cxios_set_reduce_axis_to_scalar_operation(reduce_axis_to_scalar_hdl%daddr, operation_, len(operation_)) 
     48        CALL cxios_set_reduce_axis_to_scalar_operation & 
     49      (reduce_axis_to_scalar_hdl%daddr, operation_, len(operation_)) 
    4850      ENDIF 
    4951 
     
    5860      CHARACTER(len = *) , OPTIONAL, INTENT(OUT) :: operation 
    5961 
    60       CALL xios(get_reduce_axis_to_scalar_handle)(reduce_axis_to_scalar_id,reduce_axis_to_scalar_hdl) 
     62      CALL xios(get_reduce_axis_to_scalar_handle) & 
     63      (reduce_axis_to_scalar_id,reduce_axis_to_scalar_hdl) 
    6164      CALL xios(get_reduce_axis_to_scalar_attr_hdl_)   & 
    6265      ( reduce_axis_to_scalar_hdl, operation ) 
     
    8487 
    8588      IF (PRESENT(operation_)) THEN 
    86         CALL cxios_get_reduce_axis_to_scalar_operation(reduce_axis_to_scalar_hdl%daddr, operation_, len(operation_)) 
     89        CALL cxios_get_reduce_axis_to_scalar_operation & 
     90      (reduce_axis_to_scalar_hdl%daddr, operation_, len(operation_)) 
    8791      ENDIF 
    8892 
     
    98102      LOGICAL(KIND=C_BOOL) :: operation_tmp 
    99103 
    100       CALL xios(get_reduce_axis_to_scalar_handle)(reduce_axis_to_scalar_id,reduce_axis_to_scalar_hdl) 
     104      CALL xios(get_reduce_axis_to_scalar_handle) & 
     105      (reduce_axis_to_scalar_id,reduce_axis_to_scalar_hdl) 
    101106      CALL xios(is_defined_reduce_axis_to_scalar_attr_hdl_)   & 
    102107      ( reduce_axis_to_scalar_hdl, operation ) 
     
    126131 
    127132      IF (PRESENT(operation_)) THEN 
    128         operation__tmp = cxios_is_defined_reduce_axis_to_scalar_operation(reduce_axis_to_scalar_hdl%daddr) 
     133        operation__tmp = cxios_is_defined_reduce_axis_to_scalar_operation & 
     134      (reduce_axis_to_scalar_hdl%daddr) 
    129135        operation_ = operation__tmp 
    130136      ENDIF 
Note: See TracChangeset for help on using the changeset viewer.