Skip to content

Commit e7f9b72

Browse files
authored
Fix typos
1 parent 1f47ecf commit e7f9b72

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/details/http_endpoint.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ http_endpoint::http_endpoint
115115
if(use_regex)
116116
{
117117
url_normalized += "$";
118-
re_url_normalized = std::regex(url_normalized, std::regex::extended | syntax_option_type icase | syntax_option_type nosubs);
118+
re_url_normalized = std::regex(url_normalized, std::regex::extended | std::regex::icase | std::regex::nosubs);
119119
reg_compiled = true;
120120
}
121121
}
@@ -128,7 +128,7 @@ http_endpoint::http_endpoint(const http_endpoint& h):
128128
chunk_positions(h.chunk_positions),
129129
family_url(h.family_url),
130130
reg_compiled(h.reg_compiled),
131-
re_url_normalized(h.re_url_normalize)
131+
re_url_normalized(h.re_url_normalized)
132132
{
133133
}
134134

0 commit comments

Comments
 (0)