From d0069e5189f5410e1db7aa395f0754109e872f46 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 10 Feb 2017 09:24:16 +0000 Subject: add COVERITY_NOEXCEPT_FALSE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit to markup dtors that coverity warns might throw exceptions which won't throw in practice, or where std::terminate is an acceptable response if they do Change-Id: I32b94814e8245372e1d1dc36be0d81e3564042f4 Reviewed-on: https://gerrit.libreoffice.org/38318 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- tools/source/ref/ref.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/source/ref/ref.cxx b/tools/source/ref/ref.cxx index 8be92d6547e8..283776dd4cc3 100644 --- a/tools/source/ref/ref.cxx +++ b/tools/source/ref/ref.cxx @@ -19,7 +19,7 @@ #include -SvRefBase::~SvRefBase() +SvRefBase::~SvRefBase() COVERITY_NOEXCEPT_FALSE { } -- cgit