From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6e064806c6a78fe4 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-04-12 23:05:52 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!canoe.uoregon.edu!arclight.uoregon.edu!wn13feed!wn12feed!wn14feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!rwcrnsc54.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Ada to C Question References: <2a159604.0304121850.2820b67f@posting.google.com> X-Newsreader: Tom's custom newsreader Message-ID: <377ma.165206$OV.246750@rwcrnsc54> NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@attbi.com X-Trace: rwcrnsc54 1050213951 12.234.13.56 (Sun, 13 Apr 2003 06:05:51 GMT) NNTP-Posting-Date: Sun, 13 Apr 2003 06:05:51 GMT Organization: AT&T Broadband Date: Sun, 13 Apr 2003 06:05:51 GMT Xref: archiver1.google.com comp.lang.ada:36112 Date: 2003-04-13T06:05:51+00:00 List-Id: > type MYTYPE_YOURTYPE is (MyType, -- 0 > YourType); -- 1 > > type YOURTYPE_MYTYPE is (YourType, -- 0 > MyType); -- 1 Does the program actually care? Does the representation or the ordering matter? Could you perhaps change to subtype YOURTYPE_MYTYPE is MYTYPE_YOURTYPE; with no effect?