Replace use of 'typedef' by 'using'

Issue #5227
This commit is contained in:
Norman Feske
2024-06-28 17:20:59 +02:00
parent 361557e1f0
commit 19c13877ca
442 changed files with 1306 additions and 1349 deletions

View File

@ -31,7 +31,7 @@ class Vfs::Rom_file_system : public Single_file_system
Vfs::Env::User &_vfs_user;
typedef String<64> Label;
using Label = String<64>;
Label const _label;
@ -116,8 +116,8 @@ class Vfs::Rom_file_system : public Single_file_system
bool write_ready() const override { return false; }
};
typedef Genode::Registered<Vfs_watch_handle> Registered_watch_handle;
typedef Genode::Registry<Registered_watch_handle> Watch_handle_registry;
using Registered_watch_handle = Genode::Registered<Vfs_watch_handle>;
using Watch_handle_registry = Genode::Registry<Registered_watch_handle>;
Watch_handle_registry _handle_registry { };