another rev of text parsing.
diff --git a/xmltest.cpp b/xmltest.cpp
index 8df6ce0..c3f1b3b 100644
--- a/xmltest.cpp
+++ b/xmltest.cpp
@@ -7,6 +7,7 @@
int main( int argc, const char* argv )
{
+#if 0
{
static const char* test = "<!--hello world-->";
@@ -14,14 +15,14 @@
doc.Parse( test );
doc.Print( stdout );
}
- /*
+#endif
{
- static const char* test = "<hello></hello>";
+ static const char* test = "<!--hello world\n"
+ " line 2\r-->";
XMLDocument doc;
doc.Parse( test );
doc.Print( stdout );
}
- */
return 0;
}
\ No newline at end of file