From 22f5226ec6d9e6d2b034ee7e67720dff5db7d5d7 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Sun, 22 Oct 2023 19:46:45 -0400 Subject: [PATCH] Removing unnecessary inline qualify to pure virtual function (#545) --- include/ada/url_base.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ada/url_base.h b/include/ada/url_base.h index 2f2b5fcd6..de4068d3d 100644 --- a/include/ada/url_base.h +++ b/include/ada/url_base.h @@ -111,8 +111,8 @@ struct url_base { * @return On failure, it returns zero. * @see https://url.spec.whatwg.org/#host-parsing */ - virtual ada_really_inline size_t - parse_port(std::string_view view, bool check_trailing_content) noexcept = 0; + virtual size_t parse_port(std::string_view view, + bool check_trailing_content) noexcept = 0; virtual ada_really_inline size_t parse_port(std::string_view view) noexcept { return this->parse_port(view, false);