Oops, std.xml's usage of Appender was updated incorrectly

This commit is contained in:
Steven Schveighoffer 2010-08-27 13:39:02 +00:00
parent 54b7c22526
commit 77d8957add

View file

@ -349,7 +349,7 @@ S encode(S)(S s)
{
string r;
size_t lastI;
auto result = appender!string();
auto result = appender!S();
foreach (i, c; s)
{