Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6620


Ignore:
Timestamp:
Mar 25, 2010, 11:03:20 PM (14 years ago)
Author:
rgrieder
Message:

Updated TinyXML++ to the latest trunk revision.
Only adds a function and corrects a parenthesis bug.

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.3
     1TinyXML++ trunk checkout revision 106. Built on top of TinyXML 2.5.3
  • code/trunk/src/external/tinyxml/tinyxml.cpp

    r5781 r6620  
    15411541}
    15421542
     1543
    15431544void TiXmlUnknown::Print( FILE* cfile, int depth ) const
    15441545{
     
    19601961}
    19611962
     1963bool 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  
    18281828        virtual bool Visit( const TiXmlComment& comment );
    18291829        virtual bool Visit( const TiXmlUnknown& unknown );
     1830        virtual bool Visit( const TiXmlStylesheetReference& stylesheet );
    18301831
    18311832        /** Set the indent characters for printing. By default 4 spaces
  • code/trunk/src/external/tinyxml/tinyxmlparser.cpp

    r5781 r6620  
    355355        else
    356356        {
    357                 while ( *p && IsWhiteSpace( *p ) || *p == '\n' || *p =='\r' )
     357                while ( ( *p && IsWhiteSpace( *p ) ) || *p == '\n' || *p =='\r' )
    358358                        ++p;
    359359        }
Note: See TracChangeset for help on using the changeset viewer.