New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 9927 for NEMO/trunk/src/OCE/SBC – NEMO

Ignore:
Timestamp:
2018-07-11T14:49:16+02:00 (6 years ago)
Author:
mathiot
Message:

add missing IMPLICIT NONE and variable declaration in dummy routine to be able to compile with Cray debug option

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/OCE/SBC/sbcice_cice.F90

    r9598 r9927  
    10511051 
    10521052   SUBROUTINE sbc_ice_cice ( kt, ksbc )     ! Dummy routine 
     1053      IMPLICIT NONE 
     1054      INTEGER, INTENT( in ) :: kt, ksbc 
    10531055      WRITE(*,*) 'sbc_ice_cice: You should not have seen this print! error?', kt 
    10541056   END SUBROUTINE sbc_ice_cice 
    10551057 
    10561058   SUBROUTINE cice_sbc_init (ksbc)    ! Dummy routine 
    1057       WRITE(*,*) 'cice_sbc_init: You should not have seen this print! error?' 
     1059      IMPLICIT NONE 
     1060      INTEGER, INTENT( in ) :: ksbc 
     1061      WRITE(*,*) 'cice_sbc_init: You should not have seen this print! error?', ksbc 
    10581062   END SUBROUTINE cice_sbc_init 
    10591063 
    10601064   SUBROUTINE cice_sbc_final     ! Dummy routine 
     1065      IMPLICIT NONE 
    10611066      WRITE(*,*) 'cice_sbc_final: You should not have seen this print! error?' 
    10621067   END SUBROUTINE cice_sbc_final 
Note: See TracChangeset for help on using the changeset viewer.