Fixed two cppcheck messages

This commit is contained in:
PKEuS 2013-07-06 11:28:39 +02:00
parent 632c57217c
commit 1c5f99e37c
2 changed files with 3 additions and 3 deletions

View File

@ -1691,7 +1691,7 @@ XMLError XMLDocument::Parse( const char* p, size_t len )
}
void XMLDocument::Print( XMLPrinter* streamer )
void XMLDocument::Print( XMLPrinter* streamer ) const
{
XMLPrinter stdStreamer( stdout );
if ( !streamer ) {
@ -1839,8 +1839,8 @@ void XMLPrinter::PrintString( const char* p, bool restricted )
void XMLPrinter::PushHeader( bool writeBOM, bool writeDec )
{
static const unsigned char bom[] = { TIXML_UTF_LEAD_0, TIXML_UTF_LEAD_1, TIXML_UTF_LEAD_2, 0 };
if ( writeBOM ) {
static const unsigned char bom[] = { TIXML_UTF_LEAD_0, TIXML_UTF_LEAD_1, TIXML_UTF_LEAD_2, 0 };
Print( "%s", bom );
}
if ( writeDec ) {

View File

@ -1511,7 +1511,7 @@ public:
// printer.CStr() has a const char* to the XML
@endverbatim
*/
void Print( XMLPrinter* streamer=0 );
void Print( XMLPrinter* streamer=0 ) const;
virtual bool Accept( XMLVisitor* visitor ) const;
/**