Core: Atof (comma safe atof)

git-svn-id: svn://ultimatepp.org/upp/trunk@10764 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2017-01-26 08:24:21 +00:00
parent 35a63524b2
commit 60add2c64d
6 changed files with 14 additions and 4 deletions

View file

@ -641,7 +641,7 @@ void PostgreSQLConnection::GetColumn(int i, Ref f) const
f.SetValue(atoi(s));
break;
case DOUBLE_V:
f.SetValue(atof(s));
f.SetValue(Atof(s));
break;
case BOOL_V:
f.SetValue(*s == 't' ? "1" : "0");