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 1520 for trunk/NEMO/OPA_SRC/IOM/iom.F90 – NEMO

Ignore:
Timestamp:
2009-07-22T12:45:36+02:00 (15 years ago)
Author:
smasson
Message:

remove compilation warning in iom.F90, see ticket:482

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/IOM/iom.F90

    r1487 r1520  
    100100      ! end file definition 
    101101      CALL event__close_io_definition 
     102#else 
     103      IF( .FALSE. )   WRITE(numout,*) pjulian   ! useless test to avoid compilation warnings 
    102104#endif 
    103105 
     
    900902#if defined key_iomput 
    901903      CALL event__write_field2D( cdname, pfield2d(nldi:nlei, nldj:nlej) ) 
     904#else 
     905      IF( .FALSE. )   WRITE(numout,*) cdname, pfield2d   ! useless test to avoid compilation warnings 
    902906#endif 
    903907   END SUBROUTINE iom_p2d 
     
    908912#if defined key_iomput 
    909913      CALL event__write_field3D( cdname, pfield3d(nldi:nlei, nldj:nlej, :) ) 
     914#else 
     915      IF( .FALSE. )   WRITE(numout,*) cdname, pfield3d   ! useless test to avoid compilation warnings 
    910916#endif 
    911917   END SUBROUTINE iom_p3d 
     
    937943   SUBROUTINE iom_setkt( kt ) 
    938944      INTEGER, INTENT(in   )::   kt  
     945      IF( .FALSE. )   WRITE(numout,*) kt   ! useless test to avoid compilation warnings 
    939946   END SUBROUTINE iom_setkt 
    940947 
Note: See TracChangeset for help on using the changeset viewer.