From 69ea62a069f89f5efae8d3cee93a64a4b7ba8ba8 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Tue, 1 Jul 2014 10:33:46 +0200 Subject: coverity#703975 Unchecked return value Change-Id: Icef20c193a64b7de410e21124edaa4d0699d8a66 --- include/oox/ole/axbinaryreader.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/oox/ole') diff --git a/include/oox/ole/axbinaryreader.hxx b/include/oox/ole/axbinaryreader.hxx index 1aff2a1b6563..7905e987a941 100644 --- a/include/oox/ole/axbinaryreader.hxx +++ b/include/oox/ole/axbinaryreader.hxx @@ -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 ); } -- cgit