And more VS2015 fixes
This commit is contained in:
parent
9c1d333924
commit
c4f5b5d521
3 changed files with 5 additions and 5 deletions
|
@ -894,7 +894,7 @@ void CObjectInteger::inPlaceCopy(const CObjectInteger &src)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
std::string CObjectInteger::doToString() const { return NLMISC::toString("%d"NL_I64, _Value); }
|
std::string CObjectInteger::doToString() const { return NLMISC::toString("%" NL_I64 "d", _Value); }
|
||||||
|
|
||||||
void CObjectInteger::doSerialize(std::string& out, CSerializeContext& /* context */) const
|
void CObjectInteger::doSerialize(std::string& out, CSerializeContext& /* context */) const
|
||||||
{
|
{
|
||||||
|
@ -1977,7 +1977,7 @@ void CObjectInteger::dump(const std::string prefix, uint depth) const
|
||||||
{
|
{
|
||||||
//H_AUTO(R2_CObjectInteger_dump)
|
//H_AUTO(R2_CObjectInteger_dump)
|
||||||
std::string result(depth * 4, ' ');
|
std::string result(depth * 4, ' ');
|
||||||
result += NLMISC::toString("%sInteger, ptr = 0x%p, value = %d"NL_I64", ghost = %s", prefix.c_str(), this, _Value, _Ghost ? "true" : "false");
|
result += NLMISC::toString("%sInteger, ptr = 0x%p, value = %" NL_I64 "d, ghost = %s", prefix.c_str(), this, _Value, _Ghost ? "true" : "false");
|
||||||
nlwarning(result.c_str());
|
nlwarning(result.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue