[PATCH] More Coccinelli cleanups
Marti Raudsepp <marti@juffo.org>
From: Marti Raudsepp <marti@juffo.org>
To: pgsql-hackers@postgresql.org
Date: 2010-10-29T23:33:18Z
Lists: pgsql-hackers
Attachments
- 0001-Cleanup-Simplify-comparisons-a-b-0-to-a-b.patch (text/x-patch) patch 0001
- 0002-Cleanup-Simplify-comparisons-a-b-0-to-a-b-etc.patch (text/x-patch) patch 0002
Hi list, Since my previous Coccinelle cleanup patches have gained positive feedback I decided to try some more. This time I wrote my own spatches. patch 0001 turns (a - b == 0) into (a == b) and similarly with != patch 0002 applies the same to operators >, >=, <, <= I'm well aware that there's a point where code cleanups defeat their purpose and become a burden. So this will probably be my last one, I'll go to doing productive things instead. :) Regards, Marti