Changes between Version 1 and Version 2 of BackwardIncompatibleChanges
- Timestamp:
- 12/17/14 11:20:58 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardIncompatibleChanges
v1 v2 20 20 - `output_freq`, `sync_freq` and `split_freq` in `file` objects. 21 21 22 Note that the special interface `xios_set_timestep` and the corresponding`xios_time` type have been removed.22 Note that the old `xios_time` type have been removed. 23 23 24 24 The following code: … … 38 38 }}} 39 39 will become: 40 {{{ 41 PROGRAM test 42 USE xios 43 ... 44 TYPE(xios_duration) :: dtime 45 ... 46 CALL xios_get_handle("test",ctx_hdl) 47 CALL xios_set_current_context(ctx_hdl) 48 ... 49 dtime%second=3600 50 CALL xios_set_timestep(dtime) 51 ... 52 END PROGRAM test 53 }}} 54 or 40 55 {{{ 41 56 PROGRAM test