digitalmars.D.learn - Tell compiler not to try and CTFE template?
- Jethro (10/10) Apr 10 2017 I have a template that that takes no arguments. It takes a while
- Jonathan M Davis via Digitalmars-d-learn (3/13) Apr 10 2017 Please provide a compilable code sample showing what you're talking abou...
I have a template that that takes no arguments. It takes a while to compile, but if I simply create a dummy argument, D compiles much quicker. e.g., void foo(string s)(); // slow, void foo(string s)(int x); // fast. (I, of course, pass a dummy value for x) This is because the compiler doesn't try to evaluate foo as a CTFE. I'd like inform it not to do this in the first place.
Apr 10 2017
On Tuesday, April 11, 2017 01:53:07 Jethro via Digitalmars-d-learn wrote:I have a template that that takes no arguments. It takes a while to compile, but if I simply create a dummy argument, D compiles much quicker. e.g., void foo(string s)(); // slow, void foo(string s)(int x); // fast. (I, of course, pass a dummy value for x) This is because the compiler doesn't try to evaluate foo as a CTFE. I'd like inform it not to do this in the first place.Please provide a compilable code sample showing what you're talking about. - Jonathan M Davis
Apr 10 2017