Pop Quiz what is wrong with this code?

Steven Schveighoffer schveiguy at gmail.com
Sat Jun 20 18:15:27 UTC 2020


On 6/20/20 12:00 PM, Danni Coy wrote:

> I tried explicitly making x and y ints and I got a depreciation warning.

foreach(ptrdiff_t y, ref row; offsetMap)

is that what you wanted?

ptrdiff_t is the signed version of size_t. The complaint is not that you 
are converting from unsigned to signed, but that you are converting from 
64-bit to 32-bit.

-Steve


More information about the Digitalmars-d mailing list