[m-rev.] for review: MR_TrieNode fix

Fergus Henderson fjh at cs.mu.OZ.AU
Sat Mar 15 01:29:53 AEDT 2003


For review by Zoltan.

Estimated hours taken: 0.5
Branches: main

runtime/mercury_type_info.h:
	Fix a bug: s/union MR_TrieNode/MR_TrieNode/
	This is needed since MR_TrieNode is a typedef, not a union.

Workspace: /home/ceres/fjh/mercury
Index: runtime/mercury_type_info.h
===================================================================
RCS file: /home/mercury1/repository/mercury/runtime/mercury_type_info.h,v
retrieving revision 1.99
diff -u -d -r1.99 mercury_type_info.h
--- runtime/mercury_type_info.h	26 Feb 2003 06:37:01 -0000	1.99
+++ runtime/mercury_type_info.h	14 Mar 2003 14:27:23 -0000
@@ -106,7 +106,7 @@
 typedef       struct MR_TypeInfo_Almost_Struct          *MR_TypeInfo;
 typedef const struct MR_PseudoTypeInfo_Almost_Struct    *MR_PseudoTypeInfo;
 typedef const void                                      *MR_ReservedAddr;
-typedef union MR_TrieNode                               *MR_TrieNodePtr;
+typedef MR_TrieNode                                     *MR_TrieNodePtr;
 
 #ifdef  MR_HIGHLEVEL_CODE
   typedef MR_Box                                        MR_BaseTypeclassInfo;

-- 
Fergus Henderson <fjh at cs.mu.oz.au>  |  "I have always known that the pursuit
The University of Melbourne         |  of excellence is a lethal habit"
WWW: <http://www.cs.mu.oz.au/~fjh>  |     -- the last words of T. S. Garp.
--------------------------------------------------------------------------
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