[PATCH 2/2] ewah: use less generic macro name

2015-06-02 Thread Jeff King
The ewah/ewok.h header pollutes the global namespace with "BITS_IN_WORD", without any specific notion that we are talking about the bits in an eword_t. We can give this the more specific name "BITS_IN_EWORD". Signed-off-by: Jeff King --- ewah/bitmap.c | 12 ++-- ewah/ewah_bitmap.c |

Re: [PATCH 2/2] ewah: use less generic macro name

2015-06-02 Thread Eric Sunshine
On Wed, Jun 3, 2015 at 2:39 AM, Jeff King wrote: > The ewah/ewok.h header pollutes the global namespace with > "BITS_IN_WORD", without any specific notion that we are > talking about the bits in an eword_t. We can give this the > more specific name "BITS_IN_EWORD". > > Signed-off-by: Jeff King Y