|
Archives
D Programming
digitalmars.Ddigitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger D.gnu D C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript electronics |
digitalmars.D.bugs - [Issue 3762] New: Restrictive functionality for template instance recursive expansion
http://d.puremagic.com/issues/show_bug.cgi?id=3762 Summary: Restrictive functionality for template instance recursive expansion Product: D Version: 2.039 Platform: x86 OS/Version: Windows Status: NEW Severity: enhancement Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: curoles yahoo.com CC: curoles yahoo.com --- Comment #0 from Igor Lesik <curoles yahoo.com> 2010-01-31 14:30:04 PST --- How to reproduce: template static_factorial(int n) { static if (n == 1) const static_factorial = 1; else const static_factorial = n * static_factorial!(n-1); } void main() { writefln("502!=%d", static_factorial!(502)); Error: template instance factorial.static_factorial!(2) recursive expansion Max recursion depth 500 is hardcoded in template.c function TemplateInstance::semantic() line 3738 if (++nest > 500). While 500 is reasonable practical limit, it would be nice to be able to control it somehow, with #pragma for example. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- Jan 31 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3762 --- Comment #1 from Don <clugdbug yahoo.com.au> 2010-02-04 05:53:45 PST ---While 500 is reasonable practical limit, it would be nice to be able to Feb 04 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3762 --- Comment #2 from Igor Lesik <curoles yahoo.com> 2010-02-04 10:57:03 PST --- No, I do not have any real use case for this. I have to admit that after all it is not that restrictive. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- Feb 04 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3762 Igor Lesik <curoles yahoo.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- Feb 04 2010
|