Re: [PATCH] append _unused to the expression defined using unused() macro

2019-06-11 Thread David Bremner
Tomi Ollila writes: > This way if variables defined using unused() macro are actually > used then code will not compile... pushed to master d ___ notmuch mailing list notmuch@notmuchmail.org https://notmuchmail.org/mailman/listinfo/notmuch

Re: [PATCH] append _unused to the expression defined using unused() macro

2019-06-10 Thread Daniel Kahn Gillmor
On Thu 2019-05-30 22:56:14 +0300, Tomi Ollila wrote: > This way if variables defined using unused() macro are actually > used then code will not compile... > > - removed unused usage around one argc and one argv since those > were used > > - changed one unused (char *argv[]) to unused (char **arg

[PATCH] append _unused to the expression defined using unused() macro

2019-05-30 Thread Tomi Ollila
This way if variables defined using unused() macro are actually used then code will not compile... - removed unused usage around one argc and one argv since those were used - changed one unused (char *argv[]) to unused (char **argv) to work with modified unused() macro definition --- Noticed