diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-03-14 20:59:19 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-03-14 21:00:35 +0000 |
commit | 4530bc5079e6830444386bde2d0769a2719aadcd (patch) | |
tree | e961d1462b9146b7dab1266281c2db8515e64cc6 /basic | |
parent | 41c57363faf857a41a4fc61079c32282dda970ab (diff) |
coverity#1355498 assume Unchecked return value is deliberate
Change-Id: I8b0597a5ab87d4d4529e3ccc097902486a41e957
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/uno/namecont.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/uno/namecont.cxx b/basic/source/uno/namecont.cxx index 9608fa15bdda..c0cc7ed3dfc8 100644 --- a/basic/source/uno/namecont.cxx +++ b/basic/source/uno/namecont.cxx @@ -1953,7 +1953,7 @@ void SfxLibraryContainer::storeLibraries_Impl( const uno::Reference< embed::XSto { try { - xSourceLibrariesStor->isStorageElement(rLib.aName); + (void)xSourceLibrariesStor->isStorageElement(rLib.aName); } catch (container::NoSuchElementException const&) { |