[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: OP_CONCAT in lvm.c
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Sat, 28 Mar 2015 11:23:05 -0300
> --> rb = b + base;
>
> Should the line marked by arrow not be following?
>
> rb = base + b
In C, p+n and n+p are the same, even if p is a pointer and n is an int.