From da7489eb6aa9dfedb43f9be6e1b90e3ae06a75cc Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 10 Jul 2020 15:19:30 +0200 Subject: compact namespace decl used git grep -lw namespace | xargs perl -i -p0e 's/(\w+)\s*.\{.\s*namespace\s*(\w+)/\1::\2/smg;' to do the initial replace, then compiled and fixed. Change-Id: If69904d75940c851aeffab0e78c4ba02cc968d44 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98526 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/codemaker/unotype.hxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'include/codemaker') diff --git a/include/codemaker/unotype.hxx b/include/codemaker/unotype.hxx index 90e17f5197f9..606321873242 100644 --- a/include/codemaker/unotype.hxx +++ b/include/codemaker/unotype.hxx @@ -26,9 +26,7 @@ namespace rtl { class OString; } -namespace codemaker { - -namespace UnoType { +namespace codemaker::UnoType { /** An enumeration of all the sorts of relevant UNOIDL entities. */ @@ -82,7 +80,6 @@ namespace UnoType { rtl::OString decompose( rtl::OString const & type, sal_Int32 * rank = nullptr, std::vector< rtl::OString > * arguments = nullptr); -} } -- cgit