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

@ -23,7 +23,7 @@ namespace Audio_in {
* because this file relies on the 'Audio_in::Session_capability' type.
*/
class Session;
typedef Genode::Capability<Session> Session_capability;
using Session_capability = Genode::Capability<Session>;
}
#endif /* _INCLUDE__AUDIO_IN_SESSION__CAPABILITY_H_ */