mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 21:18:14 +00:00
Kernel: Declare type aliases with "using" instead of "typedef"
This is the idiomatic way to declare type aliases in modern C++. Flagged by Sonar Cloud as a "Code Smell", but I happen to agree with this particular one. :^)
This commit is contained in:
parent
7463eb52e8
commit
9d1b27263f
7 changed files with 8 additions and 8 deletions
|
@ -130,7 +130,7 @@ private:
|
|||
|
||||
Cell& cell_at(size_t column, size_t row);
|
||||
|
||||
typedef Vector<unsigned, 4> ParamVector;
|
||||
using ParamVector = Vector<unsigned, 4>;
|
||||
|
||||
void on_code_point(u32);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue