summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-22 08:36:55 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-22 11:18:18 +0200
commit7247f840529bf6f06a2360331ae32c268b426b07 (patch)
treebd3d30673e8c3097d232a1510592dfde97e4f130 /sc
parente86690fe3a2f83e7be18a5703baf02fefea9aeec (diff)
cid#1448348 silence Stray semicolon
Change-Id: I4ceeb7099b8f5bfc132ffe1e18c7116de15d55d1 Reviewed-on: https://gerrit.libreoffice.org/76093 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/inc/xestream.hxx1
1 files changed, 1 insertions, 0 deletions
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...);
}