summaryrefslogtreecommitdiff
path: root/Tests/AK/TestIPv4Address.cpp
AgeCommit message (Collapse)Author
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
This will make it easier to support both string types at the same time while we convert code, and tracking down remaining uses. One big exception is Value::to_string() in LibJS, where the name is dictated by the ToString AO.
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
Each of these strings would previously rely on StringView's char const* constructor overload, which would call __builtin_strlen on the string. Since we now have operator ""sv, we can replace these with much simpler versions. This opens the door to being able to remove StringView(char const*). No functional changes.
2022-07-09AK: Add IPv4Address::netmask_from_cidrMaciej
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2021-05-06Tests: Move AK tests to Tests/AKBrian Gianforcaro