Files
ldc/tests/mini
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-09-11 21:10:15 +02:00
2008-09-11 21:10:15 +02:00
2008-09-11 21:10:15 +02:00
2008-09-11 21:10:15 +02:00
2008-09-11 21:10:15 +02:00
2009-03-03 19:03:27 +01:00
2009-03-03 18:26:39 +01:00
2009-03-03 19:03:27 +01:00
2009-03-03 19:03:27 +01:00
2009-03-03 18:26:39 +01:00
2009-02-18 21:46:14 +01:00
2008-10-07 20:22:04 +02:00
2009-01-17 14:53:32 +01:00
2008-10-06 22:46:55 +02:00
2009-03-24 14:33:57 +01:00
2008-07-30 10:41:31 +02:00
2009-01-17 17:41:03 +01:00
2009-01-22 21:46:40 +01:00
2009-05-10 14:37:30 +02:00
2008-10-07 20:22:04 +02:00
2008-10-22 14:55:33 +02:00
2008-10-22 14:55:33 +02:00
2009-05-30 14:57:48 -06:00
2009-03-03 19:03:27 +01:00
2009-02-03 12:33:42 -07:00
2008-11-30 11:54:18 +01:00
2008-07-23 18:04:06 +02:00
2008-10-05 17:28:15 +02:00
2008-12-07 16:06:10 +01:00