I have the following piece of code:

inc(integer(DestPixel), DestDelta); //DestPixel: PColorRGB; DestDelta: integer;

This works fine on 32-bit platforms. If I change the platform to 64-bit in the compiler the compiler emits this error:

E2064 Left side cannot be assigned to

The problem seems to be in the integer() typecast. How can I fix the problem?

link|improve this question
feedback

1 Answer

up vote 7 down vote accepted

On the 64 bit platform, DestPixel is 8 bytes wide, Integer is 4 bytes and so the typecast is invalid. You can fix this problem by using NativeInt instead.

inc(NativeInt(DestPixel), DestDelta);

The NativeInt type is the same size as a pointer and so floats between 4 bytes and 8 bytes wide depending on the output target.

Having said that, I personally would typecast with PByte because that more correctly describes the operation you are performing.

inc(PByte(DestPixel), DestDelta);
link|improve this answer
2  
+1 for using PByte which indicates that you are working with pointers and not "integer values". – Andreas Hausladen Feb 5 at 17:28
@Andreas, but wouldn't be more natural to use typecast to PColorRGB ? I mean Inc(PColorRGB(DestPixel), DestDelta); – TLama Feb 5 at 18:32
@tlama that would have a different meaning if TColorRGB has size greater than 1 – David Heffernan Feb 5 at 18:43
2  
When using pointer arithmetic, you can omit the second parameter of Inc() when advancing one item as a time. The compiler will determine the correct number of bytes to advance. – Remy Lebeau Feb 5 at 21:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.