fix issue 184. clean up xcode project.

This commit is contained in:
Lee Thomason
2014-10-30 13:25:12 -07:00
parent d211bb1351
commit f07b952296
4 changed files with 68 additions and 25 deletions

View File

@@ -1363,7 +1363,22 @@ int main( int argc, const char ** argv )
*/
}
#endif
{
// Issue #184
// If it doesn't assert, it passes. Caused by objects
// getting created during parsing which are then
// inaccessible in the memory pools.
{
XMLDocument doc;
doc.Parse("<?xml version=\"1.0\" encoding=\"UTF-8\"?><test>");
}
{
XMLDocument doc;
doc.Parse("<?xml version=\"1.0\" encoding=\"UTF-8\"?><test>");
doc.Clear();
}
}
// ----------- Performance tracking --------------