diff options
author | David Robillard <d@drobilla.net> | 2022-12-13 01:23:28 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-12-14 18:04:27 -0500 |
commit | 5d6ab4915c3b93f534c45bb6f84bf3273221e87c (patch) | |
tree | cfa2693d677a8261d5d2ab0125b7369dc39a7f86 /include/ingen/client | |
parent | 513296b868df8a3c5a55290d3146cba017418926 (diff) | |
download | ingen-5d6ab4915c3b93f534c45bb6f84bf3273221e87c.tar.gz ingen-5d6ab4915c3b93f534c45bb6f84bf3273221e87c.tar.bz2 ingen-5d6ab4915c3b93f534c45bb6f84bf3273221e87c.zip |
Concatenate nested namespaces
Diffstat (limited to 'include/ingen/client')
-rw-r--r-- | include/ingen/client/ArcModel.hpp | 6 | ||||
-rw-r--r-- | include/ingen/client/SigClientInterface.hpp | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/include/ingen/client/ArcModel.hpp b/include/ingen/client/ArcModel.hpp index a76f274f..8104b188 100644 --- a/include/ingen/client/ArcModel.hpp +++ b/include/ingen/client/ArcModel.hpp @@ -27,8 +27,7 @@ #include <string> #include <utility> -namespace ingen { -namespace client { +namespace ingen::client { /** Class to represent a port->port connections in the engine. * @@ -61,7 +60,6 @@ private: const std::shared_ptr<PortModel> _head; }; -} // namespace client -} // namespace ingen +} // namespace ingen::client #endif // INGEN_CLIENT_ARCMODEL_HPP diff --git a/include/ingen/client/SigClientInterface.hpp b/include/ingen/client/SigClientInterface.hpp index 51e05b50..6bff2e33 100644 --- a/include/ingen/client/SigClientInterface.hpp +++ b/include/ingen/client/SigClientInterface.hpp @@ -23,8 +23,7 @@ #include "ingen/client/signal.hpp" #include "ingen/ingen.h" -namespace ingen { -namespace client { +namespace ingen::client { /** A LibSigC++ signal emitting interface for clients to use. * @@ -55,7 +54,6 @@ protected: } }; -} // namespace client -} // namespace ingen +} // namespace ingen::client #endif |