Ben Pfaff <[email protected]> writes:
> On Mon, May 01, 2017 at 04:14:09PM -0400, Aaron Conole wrote:
>> A common way of expressing 'raise to the power of' when authoring
>> comments uses **. This is currently getting caught by the pointer
>> spacing warning. So, catch it here.
>>
>> Reported-by: Lance Richardson <[email protected]>
>> Signed-off-by: Aaron Conole <[email protected]>
>
> Thanks a lot for improving checkpatch, it should be helpful for
> review.
Thank you for the incrementals, and review.
> Maybe I'll start using it in my review process.
I use it by default in all of my development. The following is my
.git/hooks/pre-commit:
#!/bin/sh
if git rev-parse --verify HEAD 2>/dev/null
then
git diff-index -p --cached HEAD
else
:
fi | utilities/checkpatch.py -s
> I applied all of these patches to master.
Thanks, Ben!
_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev