coverity#703975 Unchecked return value

Change-Id: Icef20c193a64b7de410e21124edaa4d0699d8a66
This commit is contained in:
Norbert Thiebaud
2014-07-01 10:33:46 +02:00
parent 5371bc50c0
commit 69ea62a069

View File

@@ -131,7 +131,7 @@ public:
void skipIntProperty() { if( startNextProperty() ) maInStrm.skipAligned< StreamType >(); }
/** Skips the next boolean property value in the stream, if the respective
flag in the property mask is set. */
void skipBoolProperty() { startNextProperty(); }
void skipBoolProperty() { (void)startNextProperty(); }
/** Skips the next pair property in the stream, if the respective flag in
the property mask is set. */
void skipPairProperty() { readPairProperty( maDummyPairData ); }