Re: OP_CONCAT in lvm.c
[
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: 2015年3月28日 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.