mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:47:34 +00:00
AK: Prefer using instead of typedef
Problem: - `typedef` is a keyword which comes from C and carries with it old syntax that is hard to read. - Creating type aliases with the `using` keyword allows for easier future maintenance because it supports template syntax. - There is inconsistent use of `typedef` vs `using`. Solution: - Use `clang-tidy`'s checker called `modernize-use-using` to update the syntax to use the newer syntax. - Remove unused functions to make `clang-tidy` happy. - This results in consistency within the codebase.
This commit is contained in:
parent
6b97118e89
commit
f5ced347e6
12 changed files with 83 additions and 93 deletions
|
@ -31,7 +31,7 @@
|
|||
|
||||
TEST_CASE(construct)
|
||||
{
|
||||
typedef HashMap<int, int> IntIntMap;
|
||||
using IntIntMap = HashMap<int, int>;
|
||||
EXPECT(IntIntMap().is_empty());
|
||||
EXPECT_EQ(IntIntMap().size(), 0u);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue