From 7247f840529bf6f06a2360331ae32c268b426b07 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 22 Jul 2019 08:36:55 +0100 Subject: cid#1448348 silence Stray semicolon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I4ceeb7099b8f5bfc132ffe1e18c7116de15d55d1 Reviewed-on: https://gerrit.libreoffice.org/76093 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- sc/source/filter/inc/xestream.hxx | 1 + 1 file changed, 1 insertion(+) (limited to 'sc') diff --git a/sc/source/filter/inc/xestream.hxx b/sc/source/filter/inc/xestream.hxx index 0df1a030011d..2e4d34cee6fb 100644 --- a/sc/source/filter/inc/xestream.hxx +++ b/sc/source/filter/inc/xestream.hxx @@ -290,6 +290,7 @@ public: void WriteAttributes(sal_Int32 nAttribute, const Str& value, Args... rest) { WriteAttribute(nAttribute, value); + // coverity[stray_semicolon : FALSE] - coverity parse error if constexpr(sizeof...(rest) > 0) WriteAttributes(rest...); } -- cgit