On Sunday, 26 July 2020 at 21:48:09 UTC, Per Nordlöw wrote:
I see. Thanks.
The code
long add_long_n0(alias T=void)(long x) { return x + 0; }
should be
long add_long_n0(T=void)(long x) { return x + 0; }
. My mistake.
Thanks.
Per Nordlöw via Digitalmars-d-learn Sun, 26 Jul 2020 14:55:25 -0700
On Sunday, 26 July 2020 at 21:48:09 UTC, Per Nordlöw wrote:
I see. Thanks.
The code
long add_long_n0(alias T=void)(long x) { return x + 0; }
should be
long add_long_n0(T=void)(long x) { return x + 0; }
. My mistake.
Thanks.