1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:47:45 +00:00

AK: Update URLParser.{cpp,h} to use east const

This commit is contained in:
Max Wipfli 2021-06-03 12:03:56 +02:00 committed by Andreas Kling
parent 0f8ed6183b
commit 44937e2dfc
2 changed files with 13 additions and 13 deletions

View file

@ -38,10 +38,10 @@ public:
Fragment
};
static URL parse(Badge<URL>, const StringView& input, const URL* base_url = nullptr);
static URL parse(Badge<URL>, StringView const& input, URL const* base_url = nullptr);
private:
static Optional<URL> parse_data_url(const StringView& raw_input);
static Optional<URL> parse_data_url(StringView const& raw_input);
};
}