On Monday, 23 May 2016 at 10:45:49 UTC, ParticlePeter wrote:
Is there a way to get the alias uint32_t instead ?

Nope. For the compiler uint32_t and uint are the same thing, this is by design. Typedef can be used to create a separate type with the same semantics as the type it's based upon:

https://dlang.org/phobos/std_typecons.html#.Typedef

Reply via email to