Skip to content

Commit bbe367a

Browse files
committed
Fix combination of properties
1 parent a598cb4 commit bbe367a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/details/http_endpoint.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ http_endpoint::http_endpoint
114114
if(use_regex)
115115
{
116116
this->url_normalized += "$";
117-
this->re_url_normalized = std::regex(url_normalized, std::regex_constants::icase & std::regex_constants::nosubs & std::regex_constants::extended);
117+
this->re_url_normalized = std::regex(url_normalized, std::regex_constants::icase | std::regex_constants::nosubs | std::regex_constants::extended);
118118
this->reg_compiled = true;
119119
}
120120
}

0 commit comments

Comments
 (0)