On Thu, Feb 28, 2013 at 02:32:02PM +0900, Miles Bader wrote: > Marek Polacek <pola...@redhat.com> writes: > > + bool changed = false; > > + changed |= true; > > + changed |= true; > > + changed |= true; > > + changed |= true; > > + if (changed) > > Why do you use "|=" ...? Isn't it equivalent to just "=" (which is > more clear) for a boolean?
Ah, yeah, it's a remnant; I had "changed = false;" there as well. Will adjust, thanks, Marek