diff options
-rw-r--r-- | oox/source/ole/olestorage.cxx | 2 |
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& ) |