grauzone wrote:
>
> Check if the variable is a pointer, and if yes, dereference it:
>
> alias typeof(i) T;
> static if (is(T T2 : T2*)) {
> T2 i2 = *i;
> Format.convert("{}", i2);
> } else {
> Format.convert("{}", i);
> }
Hi again,
I cannot compile this code