Ok it's done, at least for the confirmed ones.<br><br>But I will need someone to take a look at some of my unanswered posts for confirmation on whether these are errors/bugs:<br><br><a href="http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=114394">http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=114394</a><br>
<a href="http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=114395">http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=114395</a><br><a href="http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=114397">http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=114397</a><br>
<a href="http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=114891">http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=114891</a> (Perhaps I'm misunderstanding the commet there, but ultimately a Friend method gets called)<br>
<br><br><div class="gmail_quote">On Mon, Aug 9, 2010 at 10:40 PM, Andrei Alexandrescu <span dir="ltr"><<a href="mailto:SeeWebsiteForEmail@erdani.org">SeeWebsiteForEmail@erdani.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div><div></div><div class="h5">Yao G. wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Andrei has this errata web page: <a href="http://www.erdani.com/tdpl/errata/index.php?title=Main_Page" target="_blank">http://www.erdani.com/tdpl/errata/index.php?title=Main_Page</a><br>
<br>
I think you should edit the wiki and add them, because here your message will be lost between all the flux of messages.<br>
<br>
On Mon, 09 Aug 2010 15:29:06 -0500, Andrej Mitrovic <<a href="mailto:andrej.mitrovich@gmail.com" target="_blank">andrej.mitrovich@gmail.com</a>> wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
The last example:<br>
<br>
override bool opEquals(Object rhs)<br>
{<br>
// the other must be at least a Widget<br>
auto that = cast(Widget) rhs;<br>
if (!that)<br>
return false;<br>
// do they compare equals as Widgets? if not, we're done<br>
if (!super.opEquals(that))<br>
return false;<br>
// is it a TextWidget?<br>
auto that2 = cast(TextWidget) rhs;<br>
// if not, we're done comparing with success<br>
if (!that2)<br>
return true;<br>
// compare as TextWidgets<br>
return text == that.text;<br>
}<br>
<br>
<br>
Last return should be:<br>
<br>
return text == that2.text;<br>
</blockquote></blockquote>
<br></div></div>
Yes please. Andrej, doing so for your past reports would be very much appreciated. Thanks!<br><font color="#888888">
<br>
Andrei<br>
<br>
</font></blockquote></div><br>