diff options
author | sin-ack <sin-ack@users.noreply.github.com> | 2022-07-11 20:59:08 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-07-12 23:11:35 +0200 |
commit | 604aac531c018fa4a2afd4e981bacbbdd961dcf7 (patch) | |
tree | b89d1b935da4e7dba87b73607828b307eeeb24b0 /AK/URL.h | |
parent | 3f8060d8590b7c48e6afadfeb6398893240877ef (diff) | |
download | serenity-604aac531c018fa4a2afd4e981bacbbdd961dcf7.zip |
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.
Diffstat (limited to 'AK/URL.h')
-rw-r--r-- | AK/URL.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -38,10 +38,6 @@ public: URL() = default; URL(StringView); - URL(char const* string) - : URL(StringView(string)) - { - } URL(String const& string) : URL(string.view()) { |