On Wednesday, 10 April 2019 at 20:37:38 UTC, Ben Jones wrote:
Looking through Phobos code there's a bunch functions defined
with dummy template types:
void whatever(TDummy = void)( int x, ...) //TDummy is never used
Why not just use an empty template parameter list?
void whatever()(int x, ...
Looking through Phobos code there's a bunch functions defined
with dummy template types:
void whatever(TDummy = void)( int x, ...) //TDummy is never used
Why not just use an empty template parameter list?
void whatever()(int x, ...)
My gut tells me that his is a workaround for an old limitat