We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74e56aa commit 22f5226Copy full SHA for 22f5226
include/ada/url_base.h
@@ -111,8 +111,8 @@ struct url_base {
111
* @return On failure, it returns zero.
112
* @see https://url.spec.whatwg.org/#host-parsing
113
*/
114
- virtual ada_really_inline size_t
115
- 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;
116
117
virtual ada_really_inline size_t parse_port(std::string_view view) noexcept {
118
return this->parse_port(view, false);
0 commit comments