U++: fixed sources to support c++0x (rm #269)

git-svn-id: svn://ultimatepp.org/upp/trunk@4818 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2012-04-19 07:51:23 +00:00
parent a2cdb45a7b
commit 4a31c85643
5 changed files with 6 additions and 6 deletions

View file

@ -2772,7 +2772,7 @@ static String sCsvFormat(const Value& v)
String ArrayCtrl::AsCsv(bool sel, int sep, bool hdr)
{
char h[2] = { sep, 0 };
char h[2] = { (char)sep, 0 };
return AsText(sCsvFormat, sel, h, "\r\n", hdr ? h : NULL, "\r\n");
}