keep the namespace comment

This commit is contained in:
wwylele 2018-02-22 17:46:31 +02:00
parent d9500ecf9b
commit 26a9c5832d
2 changed files with 3 additions and 3 deletions

View file

@ -285,4 +285,4 @@ void Shutdown() {
g_kernel_named_ports.clear(); g_kernel_named_ports.clear();
LOG_DEBUG(Service, "shutdown OK"); LOG_DEBUG(Service, "shutdown OK");
} }
} } // namespace Service

View file

@ -20,7 +20,7 @@ namespace Kernel {
class ClientPort; class ClientPort;
class ServerPort; class ServerPort;
class ServerSession; class ServerSession;
} } // namespace Kernel
namespace Service { namespace Service {
@ -275,4 +275,4 @@ void AddNamedPort(std::string name, Kernel::SharedPtr<Kernel::ClientPort> port);
/// Adds a service to the services table /// Adds a service to the services table
void AddService(Interface* interface_); void AddService(Interface* interface_);
} // namespace } // namespace Service