On 1/18/19 5:53 PM, Ali wrote:
Hello. I am having an issue with the code below. the out put after compiling is this :

Deprecation: foreach: loop index implicitly converted from size_t to uint

the code is :

auto available = new int[cast(uint) max - min];
         foreach (uint i, ref a; available)

foreach (i, ref a; available)

             a = min + i;

a = cast(uint)(min + i);


Any help would be highly appreciated.

-Steve
  • Deprecation Ali via Digitalmars-d-learn
    • Re: Deprecation H. S. Teoh via Digitalmars-d-learn
    • Re: Deprecation Neia Neutuladh via Digitalmars-d-learn
    • Re: Deprecation Steven Schveighoffer via Digitalmars-d-learn

Reply via email to