coverity#703975 Unchecked return value
Change-Id: Icef20c193a64b7de410e21124edaa4d0699d8a66
This commit is contained in:
@@ -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 ); }
|
||||
|
Reference in New Issue
Block a user