summaryrefslogtreecommitdiff
path: root/include/oox
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-07-01 10:33:46 +0200
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-07-01 12:44:05 +0200
commit69ea62a069f89f5efae8d3cee93a64a4b7ba8ba8 (patch)
treeeb0b4b2fd6b2bb7013f2cc57188658e9f9768cae /include/oox
parent5371bc50c0ea931e9859186f0f05644bbdb51246 (diff)
coverity#703975 Unchecked return value
Change-Id: Icef20c193a64b7de410e21124edaa4d0699d8a66
Diffstat (limited to 'include/oox')
-rw-r--r--include/oox/ole/axbinaryreader.hxx2
1 files changed, 1 insertions, 1 deletions
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 ); }