Files
ldc/runtime/internal
Frits van Bommel 46cd6504fa Adjust some more code that was depending on the function and delegate calling
conventions being equal.
There's also an instance in `tango.text.convert.Layout` that should be adjusted:
{{{
Index: tango/text/convert/Layout.d
===================================================================
--- tango/text/convert/Layout.d	(revision 4578)
+++ tango/text/convert/Layout.d	(working copy)
 -660,8 +660,12 @@

                        case TypeCode.STRUCT:
                             auto s = cast(TypeInfo_Struct) type;
-                            if (s.xtoString)
-                                return Utf.fromString8 (s.xtoString(p), result);
+                            if (s.xtoString) {
+                                char[] delegate() toString;
+                                toString.ptr = p;
+                                toString.funcptr = cast(char[] function()) s.xtoString;
+                                return Utf.fromString8 (toString(), result);
+                            }
                             goto default;

                        case TypeCode.INTERFACE:
}}}
2009-05-31 15:27:01 +02:00
..
2008-12-27 16:07:23 +01:00
2008-10-22 14:55:33 +02:00
2008-12-15 21:09:33 +01:00
2009-03-18 15:20:07 +01:00
2009-05-02 16:39:26 +02:00
2008-10-22 14:55:33 +02:00
2009-05-02 16:39:26 +02:00
2008-10-22 14:55:33 +02:00