mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-24 14:22:40 -06:00
Core: Atof (comma safe atof)
git-svn-id: svn://ultimatepp.org/upp/trunk@10764 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
35a63524b2
commit
60add2c64d
6 changed files with 14 additions and 4 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue