diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-13 19:48:37 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-31 18:36:09 +0100 |
commit | c82efb610bf556ea12cbe4f94568ac619897799f (patch) | |
tree | 997f443876b4f3c9f10a46f2d0df65093f9d8731 /unoidl/source | |
parent | 04405edc3fac32938b8940bc767656ea6c7820f9 (diff) |
clang-tidy modernize-concat-nested-namespace
Change-Id: Iab35a8b85b3ba1df791c774f40b037f9420a071a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86708
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unoidl/source')
-rw-r--r-- | unoidl/source/legacyprovider.cxx | 4 | ||||
-rw-r--r-- | unoidl/source/sourcefileprovider.cxx | 4 | ||||
-rw-r--r-- | unoidl/source/sourcetreeprovider.cxx | 4 | ||||
-rw-r--r-- | unoidl/source/unoidlprovider.cxx | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/unoidl/source/legacyprovider.cxx b/unoidl/source/legacyprovider.cxx index 8e517e986f67..61e35e8cf952 100644 --- a/unoidl/source/legacyprovider.cxx +++ b/unoidl/source/legacyprovider.cxx @@ -22,7 +22,7 @@ #include "legacyprovider.hxx" -namespace unoidl { namespace detail { +namespace unoidl::detail { namespace { @@ -822,6 +822,6 @@ rtl::Reference< Entity > LegacyProvider::findEntity(OUString const & name) LegacyProvider::~LegacyProvider() throw () {} -} } +} /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/unoidl/source/sourcefileprovider.cxx b/unoidl/source/sourcefileprovider.cxx index c538f8553b90..c0fc695e4235 100644 --- a/unoidl/source/sourcefileprovider.cxx +++ b/unoidl/source/sourcefileprovider.cxx @@ -16,7 +16,7 @@ #include "sourcefileprovider.hxx" #include "sourceprovider-scanner.hxx" -namespace unoidl { namespace detail { +namespace unoidl::detail { namespace { @@ -130,6 +130,6 @@ rtl::Reference<Entity> SourceFileProvider::findEntity(OUString const & name) SourceFileProvider::~SourceFileProvider() throw () {} -} } +} /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/unoidl/source/sourcetreeprovider.cxx b/unoidl/source/sourcetreeprovider.cxx index 0d88c8e0565a..fd780f8dfd5e 100644 --- a/unoidl/source/sourcetreeprovider.cxx +++ b/unoidl/source/sourcetreeprovider.cxx @@ -29,7 +29,7 @@ #include <osl/thread.h> #endif -namespace unoidl { namespace detail { +namespace unoidl::detail { namespace { @@ -205,6 +205,6 @@ rtl::Reference<Entity> SourceTreeProvider::findEntity(OUString const & name) SourceTreeProvider::~SourceTreeProvider() throw () {} -} } +} /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/unoidl/source/unoidlprovider.cxx b/unoidl/source/unoidlprovider.cxx index bde4d74a6a12..be59087e3095 100644 --- a/unoidl/source/unoidlprovider.cxx +++ b/unoidl/source/unoidlprovider.cxx @@ -29,7 +29,7 @@ #include "unoidlprovider.hxx" -namespace unoidl { namespace detail { +namespace unoidl::detail { class MappedFile: public salhelper::SimpleReferenceObject { public: @@ -1402,6 +1402,6 @@ rtl::Reference< Entity > UnoidlProvider::findEntity(OUString const & name) const UnoidlProvider::~UnoidlProvider() throw () {} -} } +} /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |