Skip to content

Commit 22f5226

Browse files
authored
Removing unnecessary inline qualify to pure virtual function (#545)
1 parent 74e56aa commit 22f5226

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/ada/url_base.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ struct url_base {
111111
* @return On failure, it returns zero.
112112
* @see https://url.spec.whatwg.org/#host-parsing
113113
*/
114-
virtual ada_really_inline size_t
115-
parse_port(std::string_view view, bool check_trailing_content) noexcept = 0;
114+
virtual size_t parse_port(std::string_view view,
115+
bool check_trailing_content) noexcept = 0;
116116

117117
virtual ada_really_inline size_t parse_port(std::string_view view) noexcept {
118118
return this->parse_port(view, false);

0 commit comments

Comments
 (0)