mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
Mac OS build fixes by laszlo
-- version 0.2.8
This commit is contained in:
parent
288424ad63
commit
240f3fbe2f
12 changed files with 109 additions and 74 deletions
6
util.cpp
6
util.cpp
|
|
@ -314,6 +314,12 @@ string FormatMoney(int64 n, bool fPlus)
|
|||
return str;
|
||||
}
|
||||
|
||||
|
||||
bool ParseMoney(const string& str, int64& nRet)
|
||||
{
|
||||
return ParseMoney(str.c_str(), nRet);
|
||||
}
|
||||
|
||||
bool ParseMoney(const char* pszIn, int64& nRet)
|
||||
{
|
||||
string strWhole;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue