Fixed: Compilation with GCC

--HG--
branch : develop
hg/feature/cef3
kervala 10 years ago
parent c2139e95c0
commit f999cc892c

@ -284,7 +284,7 @@ void CCDBStructNodeBranch::init( xmlNodePtr node, NLMISC::IProgressCallback &pro
{ {
// dealing with an array of entries // dealing with an array of entries
uint countAsInt; uint countAsInt;
NLMISC::fromString(count, countAsInt); NLMISC::fromString(count.str(), countAsInt);
nlassert((const char *) count != NULL); nlassert((const char *) count != NULL);
for (uint i=0;i<countAsInt;i++) for (uint i=0;i<countAsInt;i++)
@ -347,7 +347,7 @@ void CCDBStructNodeBranch::init( xmlNodePtr node, NLMISC::IProgressCallback &pro
{ {
// dealing with an array of entries // dealing with an array of entries
uint countAsInt; uint countAsInt;
NLMISC::fromString(count, countAsInt); NLMISC::fromString(count.str(), countAsInt);
nlassert((const char *) count != NULL); nlassert((const char *) count != NULL);
for (uint i=0;i<countAsInt;i++) for (uint i=0;i<countAsInt;i++)

Loading…
Cancel
Save