Kaydet (Commit) 29166914 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1296207 deliberate Unchecked return value

Change-Id: I0248d540937d1706f4b1fb2cbf0516cfbf870963
üst 0c0569fb
......@@ -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& )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment