]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - libs/xml/xmlparser.h
Build quake2 tools
[xonotic/netradiant.git] / libs / xml / xmlparser.h
index b11d355bce45c1a42df4f4df3644b1071747c13a..1c1bdb01fca448eb08077deb1965444a9675c382 100644 (file)
@@ -187,7 +187,7 @@ XMLStreamParser( TextInputStream& istream )
        : m_istream( istream ){
 }
 virtual void exportXML( XMLImporter& importer ){
-       bool wellFormed = false;
+       //bool wellFormed = false;
 
        char chars[BUFSIZE];
        std::size_t res = m_istream.read( chars, 4 );
@@ -203,7 +203,7 @@ virtual void exportXML( XMLImporter& importer ){
                }
                xmlParseChunk( ctxt, chars, 0, 1 );
 
-               wellFormed = ( ctxt->wellFormed == 1 );
+               //wellFormed = ( ctxt->wellFormed == 1 );
 
                xmlFreeParserCtxt( ctxt );
        }