mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-17 14:48:20 +00:00
@ -17,6 +17,6 @@
|
||||
#include <base/capability.h>
|
||||
#include <root/root.h>
|
||||
|
||||
namespace Genode { typedef Capability<Root> Root_capability; }
|
||||
namespace Genode { using Root_capability = Capability<Root>; }
|
||||
|
||||
#endif /* _INCLUDE__ROOT__CAPABILITY_H_ */
|
||||
|
@ -29,8 +29,8 @@ namespace Genode {
|
||||
|
||||
struct Genode::Root
|
||||
{
|
||||
typedef Rpc_in_buffer<160> Session_args;
|
||||
typedef Rpc_in_buffer<160> Upgrade_args;
|
||||
using Session_args = Rpc_in_buffer<160>;
|
||||
using Upgrade_args = Rpc_in_buffer<160>;
|
||||
|
||||
virtual ~Root() { }
|
||||
|
||||
@ -84,7 +84,7 @@ struct Genode::Root
|
||||
template <typename SESSION_TYPE>
|
||||
struct Genode::Typed_root : Root
|
||||
{
|
||||
typedef SESSION_TYPE Session_type;
|
||||
using Session_type = SESSION_TYPE;
|
||||
};
|
||||
|
||||
#endif /* _INCLUDE__ROOT__ROOT_H_ */
|
||||
|
Reference in New Issue
Block a user