Adjust coding style to C++17 nested namespaces

Change-Id: I34376108d77e0faeb6498cefedb563276f42fefa
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
hjk
2022-07-07 14:36:25 +02:00
parent b9ceefe918
commit 87dfe4725a

View File

@@ -569,8 +569,7 @@
... ...
using namespace Utils; using namespace Utils;
namespace Foo { namespace Foo::Internal {
namespace Internal {
void SomeThing::bar() void SomeThing::bar()
{ {
@@ -578,8 +577,7 @@
... ...
} }
... ...
} // namespace Internal // or only // Internal } // Foo::Internal // or // namespace Foo::Internal
} // namespace Foo // or only // Foo
-NOT- -NOT-