summaryrefslogtreecommitdiff
path: root/oox/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-04-29 20:52:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-04-29 21:17:18 +0100
commit2916691477be5e027726a6441dec3d44bd95d055 (patch)
treee9864f4c98b925c68fc922c95e95e6d36c8848a6 /oox/source
parent0c0569fb2a48a95d0c1f69234548ddd7ec32b59b (diff)
coverity#1296207 deliberate Unchecked return value
Change-Id: I0248d540937d1706f4b1fb2cbf0516cfbf870963
Diffstat (limited to 'oox/source')
-rw-r--r--oox/source/ole/olestorage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/ole/olestorage.cxx b/oox/source/ole/olestorage.cxx
index 8d27eea44081..296898c63433 100644
--- a/oox/source/ole/olestorage.cxx
+++ b/oox/source/ole/olestorage.cxx
@@ -269,7 +269,7 @@ bool OleStorage::implIsStorage() const
/* If this is not an OLE storage, hasElements() of the OLESimpleStorage
implementation throws an exception. But we do not return the result
of hasElements(), because an empty storage is a valid storage too. */
- mxStorage->hasElements();
+ (void)mxStorage->hasElements();
return true;
}
catch(const Exception& )