[m-rev.] trivial diff: fix build failure on earth
Julien Fischer
juliensf at cs.mu.OZ.AU
Tue Sep 7 20:01:06 AEST 2004
Estimated hours taken: 0.2
Branches: main
compiler/modes.m:
Fix another ambiguous overloading that was causing
nightly builds to fail on hosts that compile
with intermodule optimization enabled.
Julien.
Index: modes.m
===================================================================
RCS file: /home/mercury1/repository/mercury/compiler/modes.m,v
retrieving revision 1.280
diff -u -r1.280 modes.m
--- modes.m 5 Sep 2004 23:52:30 -0000 1.280
+++ modes.m 7 Sep 2004 08:57:56 -0000
@@ -1669,7 +1669,7 @@
%
DelayedGoals0 = [_ | _],
- Goals0 = map(hlds_goal_from_delayed_goal, DelayedGoals0),
+ Goals0 = list.map(hlds_goal_from_delayed_goal, DelayedGoals0),
mode_info_get_delay_info(!.ModeInfo, DelayInfo0),
delay_info__enter_conj(DelayInfo0, DelayInfo1),
--------------------------------------------------------------------------
mercury-reviews mailing list
post: mercury-reviews at cs.mu.oz.au
administrative address: owner-mercury-reviews at cs.mu.oz.au
unsubscribe: Address: mercury-reviews-request at cs.mu.oz.au Message: unsubscribe
subscribe: Address: mercury-reviews-request at cs.mu.oz.au Message: subscribe
--------------------------------------------------------------------------
More information about the reviews
mailing list