From 84b396a235671ea77f1a9fa0d131cb56d7662737 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 23 Jan 2020 15:16:37 +0200 Subject: new loplugin:namespaceindentation check indentation of braces in namespace decls, and the comments that often appear with them. This is my penance for messing up the indentation with clang-tidy-modernize-namespaces. As such I have limited it to new-style namespaces for now, and the check is off by default. Change-Id: I4db7f10a81c79bc0eece8f8e3ee564da8bc7f168 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87723 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sw/source/filter/ww8/ww8par.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/source/filter') diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx index eaa7e9d957ae..f135c70eeba2 100644 --- a/sw/source/filter/ww8/ww8par.cxx +++ b/sw/source/filter/ww8/ww8par.cxx @@ -6555,7 +6555,7 @@ bool SwWW8ImplReader::InEqualApo(int nLvl) const } namespace sw::hack - { +{ Position::Position(const SwPosition &rPos) : maPtNode(rPos.nNode), mnPtContent(rPos.nContent.GetIndex()) { @@ -6567,7 +6567,7 @@ namespace sw::hack aRet.nContent.Assign(maPtNode.GetNode().GetContentNode(), mnPtContent); return aRet; } - } +} SwMacroInfo::SwMacroInfo() : SdrObjUserData( SdrInventor::ScOrSwDraw, SW_UD_IMAPDATA ) -- cgit