Thread overview | |||||
---|---|---|---|---|---|
|
January 04, 2012 [Issue 7214] New: Change of template specialization resolution | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=7214 Summary: Change of template specialization resolution Product: D Version: D2 Platform: Other OS/Version: All Status: NEW Severity: minor Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: dawg@dawgfoto.de --- Comment #0 from dawg@dawgfoto.de 2012-01-03 20:59:36 PST --- template isStaticArray(T : U[N], U, size_t N) { enum bool isStaticArray = true; } template isStaticArray(T) { enum bool isStaticArray = false; } struct Matrix { float[3][3] _data; alias _data this; } static assert(!isStaticArray!Matrix); // isStaticArray!Matrix is true now --------- This piece of code changed it's semantics with the recent dmd changes. Just wanted to make sure that this is deliberate. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
January 04, 2012 [Issue 7214] Change of template specialization resolution | ||||
---|---|---|---|---|
| ||||
Posted in reply to dawg@dawgfoto.de | http://d.puremagic.com/issues/show_bug.cgi?id=7214 --- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2012-01-03 21:11:32 PST --- The report is bug 7124. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
January 05, 2012 [Issue 7214] Change of template specialization resolution | ||||
---|---|---|---|---|
| ||||
Posted in reply to dawg@dawgfoto.de | http://d.puremagic.com/issues/show_bug.cgi?id=7214 dawg@dawgfoto.de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #2 from dawg@dawgfoto.de 2012-01-04 18:28:17 PST --- This is likely OK. I just saw that the T of T : U[N] will still bind to Matrix, so the full type information is preserved. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation