mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:07:34 +00:00
AK+Userland+Tests: Remove URL(char const*) constructor
The StringView(char const*) constructor is being removed, and there was only a few users of this left, which are also cleaned up in this commit.
This commit is contained in:
parent
3f8060d859
commit
604aac531c
3 changed files with 62 additions and 66 deletions
4
AK/URL.h
4
AK/URL.h
|
@ -38,10 +38,6 @@ public:
|
|||
|
||||
URL() = default;
|
||||
URL(StringView);
|
||||
URL(char const* string)
|
||||
: URL(StringView(string))
|
||||
{
|
||||
}
|
||||
URL(String const& string)
|
||||
: URL(string.view())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue