compile on windows

This commit is contained in:
jed
2012-06-05 14:06:21 -07:00
parent 79cc39f902
commit 6559655218
7 changed files with 52 additions and 13 deletions

View File

@@ -100,7 +100,7 @@ bool STAmount::setValue(const std::string& sAmount, const std::string& sCurrency
if (bInteger)
{
uValue = sAmount.empty() ? 0 : boost::lexical_cast<uint>(sAmount);
uValue = sAmount.empty() ? 0 : boost::lexical_cast<unsigned int>(sAmount);
iOffset = 0;
}
else