fix issue 184. clean up xcode project.
diff --git a/xmltest.cpp b/xmltest.cpp
index 56b6c82..c57bd79 100644
--- a/xmltest.cpp
+++ b/xmltest.cpp
@@ -1363,7 +1363,22 @@
 		*/

 	}

 #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 --------------