Re: [Devel] [patch] Drop ParagraphList::find

2003-05-30 Thread Andre Poenitz
On Tue, May 27, 2003 at 11:27:55PM +0200, Lars Gullik Bjønnes wrote: +bool operator==(Paragraph const & lhs, Paragraph const & rhs) +{ +#warning FIXME this implementatoin must be completely wrong... + return &lhs == &rhs; +} As the warning says. Wouldn't it be more prudent to use a special-

Re: [Devel] [patch] Drop ParagraphList::find

2003-05-30 Thread Lars Gullik Bjønnes
Andre Poenitz <[EMAIL PROTECTED]> writes: | On Tue, May 27, 2003 at 11:27:55PM +0200, Lars Gullik Bjønnes wrote: | +bool operator==(Paragraph const & lhs, Paragraph const & rhs) | +{ | +#warning FIXME this implementatoin must be completely wrong... | + return &lhs == &rhs; | +} | | As the w