- Timestamp:
- Mar 25, 2010, 11:03:20 PM (15 years ago)
- Location:
- code/trunk/src/external/tinyxml
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/external/tinyxml/VERSION
r5781 r6620 1 TinyXML++ trunk checkout revision 98. Built on top of TinyXML 2.5.31 TinyXML++ trunk checkout revision 106. Built on top of TinyXML 2.5.3 -
code/trunk/src/external/tinyxml/tinyxml.cpp
r5781 r6620 1541 1541 } 1542 1542 1543 1543 1544 void TiXmlUnknown::Print( FILE* cfile, int depth ) const 1544 1545 { … … 1960 1961 } 1961 1962 1963 bool TiXmlPrinter::Visit( const TiXmlStylesheetReference& stylesheet ) 1964 { 1965 DoIndent(); 1966 stylesheet.Print( 0, 0, &buffer ); 1967 DoLineBreak(); 1968 return true; 1969 } -
code/trunk/src/external/tinyxml/tinyxml.h
r5781 r6620 1828 1828 virtual bool Visit( const TiXmlComment& comment ); 1829 1829 virtual bool Visit( const TiXmlUnknown& unknown ); 1830 virtual bool Visit( const TiXmlStylesheetReference& stylesheet ); 1830 1831 1831 1832 /** Set the indent characters for printing. By default 4 spaces -
code/trunk/src/external/tinyxml/tinyxmlparser.cpp
r5781 r6620 355 355 else 356 356 { 357 while ( *p && IsWhiteSpace( *p) || *p == '\n' || *p =='\r' )357 while ( ( *p && IsWhiteSpace( *p ) ) || *p == '\n' || *p =='\r' ) 358 358 ++p; 359 359 }
Note: See TracChangeset
for help on using the changeset viewer.