updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / mango-ldc-svn / ldc-fix.patch
blobbb8cc1847833cb568134fbe084e6c0316fbbfa75
1 Index: mango/icu/UBreakIterator.d
2 ===================================================================
3 --- mango/icu/UBreakIterator.d (revision 1122)
4 +++ mango/icu/UBreakIterator.d (working copy)
5 @@ -300,7 +300,7 @@
7 *******************************************************************************/
9 -private class UBreakIterator : ICU
10 +class UBreakIterator : ICU
12 package Handle handle;
14 Index: mango/icu/UString.d
15 ===================================================================
16 --- mango/icu/UString.d (revision 1122)
17 +++ mango/icu/UString.d (working copy)
18 @@ -765,7 +765,8 @@
20 final override uint toHash ()
22 - return typeid(wchar[]).getHash (&content[0..len]);
23 + wchar [] tmp = content[0..len];
24 + return (typeid(wchar[]).getHash (&tmp));
27 /***********************************************************************
28 Index: mango/xml/rpc/Client.d
29 ===================================================================
30 --- mango/xml/rpc/Client.d (revision 1122)
31 +++ mango/xml/rpc/Client.d (working copy)
32 @@ -39,7 +39,8 @@
34 private import tango.text.convert.UnicodeBom,
35 Double = tango.text.convert.Float,
36 - Text = tango.text.Util;
37 + Text = tango.text.Util,
38 + Integer = tango.text.convert.Integer;
40 private import mango.xml.sax.model.ISAXParser,
41 mango.xml.sax.model.ISAXHandler,
42 @@ -753,4 +754,4 @@
44 } else
45 static assert(0);
47 \ No newline at end of file