<p><b>duda</b> 2011-09-21 15:23:00 -0600 (Wed, 21 Sep 2011)</p><p>BRANCH COMMIT<br>
<br>
Add 'only' clause on the use of mpas_timekeeping in module_time_integration.F to prevent <br>
the xlf compiler from getting confused by the overloaded abs() intrinsic defined in mpas_timekeeping.<br>
<br>
<br>
M    src/core_nhyd_atmos/module_time_integration.F<br>
</p><hr noshade><pre><font color="gray">Modified: branches/atmos_physics/src/core_nhyd_atmos/module_time_integration.F
===================================================================
--- branches/atmos_physics/src/core_nhyd_atmos/module_time_integration.F        2011-09-21 00:16:08 UTC (rev 1014)
+++ branches/atmos_physics/src/core_nhyd_atmos/module_time_integration.F        2011-09-21 21:23:00 UTC (rev 1015)
@@ -5,7 +5,9 @@
    use constants
    use dmpar
    use vector_reconstruction
-   use mpas_timekeeping
+   ! Added only clause to keep xlf90 from getting confused from the overloaded abs intrinsic in mpas_timekeeping
+   use mpas_timekeeping, only: MPAS_Time_type, MPAS_TimeInterval_type, &amp;
+                               MPAS_setTime, MPAS_setTimeInterval, MPAS_getTime, operator(+)
 
 #ifdef DO_PHYSICS
    use module_driver_microphysics

</font>
</pre>