Ignore:
Timestamp:
06/13/19 16:45:41 (5 years ago)
Author:
adurocher
Message:

trunk : Fixed GCC warnings

Fixed iso c bindings
fixed warnings with -Wall -Wno-aliasing -Wno-unused -Wno-unused-dummy-argument -Wno-maybe-uninitialized -Wno-tabs warnings
Removed all unused variables (-Wunused-variable)
vector%dot_product is now dot_product_3d to avoid compilation warning "dot_product shadows intrinsic" with GCC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/trunk/src/time/time.f90

    r706 r899  
    5454    run_length=dt*itaumax 
    5555    CALL getin('run_length',run_length) 
    56     itaumax=run_length/dt 
     56    itaumax=INT(run_length/dt) 
    5757     
    5858    time_style='dcmip' 
Note: See TracChangeset for help on using the changeset viewer.