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

@ -54,11 +54,10 @@ class Tff_font : public Text_painter::Font
private:
typedef Genode::int32_t int32_t;
typedef Text_painter::Codepoint Codepoint;
typedef Text_painter::Area Area;
typedef Text_painter::Glyph Glyph;
using int32_t = Genode::int32_t;
using Codepoint = Text_painter::Codepoint;
using Area = Text_painter::Area;
using Glyph = Text_painter::Glyph;
Glyph_buffer &_buf;