Kaydet (Commit) 663e0980 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Mark some exception classes as SAL_WARN_UNUSED

...so that it would have found 09978dd1
"clang-tidy bugprone-unused-return-value"

Change-Id: I75fb36618bf76110e5c32b9c2a5aeff7461a2a9a
Reviewed-on: https://gerrit.libreoffice.org/60235
Tested-by: Jenkins
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst d934fe80
......@@ -24,7 +24,7 @@
namespace unoidl {
class LO_DLLPUBLIC_UNOIDL NoSuchFileException final {
class LO_DLLPUBLIC_UNOIDL SAL_WARN_UNUSED NoSuchFileException final {
public:
SAL_DLLPRIVATE NoSuchFileException(rtl::OUString const & uri): uri_(uri) {}
......@@ -41,7 +41,7 @@ private:
rtl::OUString uri_;
};
class LO_DLLPUBLIC_UNOIDL FileFormatException final {
class LO_DLLPUBLIC_UNOIDL SAL_WARN_UNUSED FileFormatException final {
public:
SAL_DLLPRIVATE FileFormatException(
rtl::OUString const & uri, rtl::OUString const & detail):
......
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