Skip to content

Commit ac92bbc

Browse files
author
Kyu Hyun Chang
committed
Make path matcher utility compilable with gcc 4.9
1 parent 22d14c8 commit ac92bbc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/include/grpc_transcoding/path_matcher_utility.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ class PathMatcherUtility {
3535
static bool RegisterByHttpRule(PathMatcherBuilder<Method> &pmb,
3636
const google::api::HttpRule &http_rule,
3737
const Method &method) {
38-
return RegisterByHttpRule(pmb, http_rule, {}, method);
38+
return RegisterByHttpRule(pmb, http_rule, std::unordered_set<std::string>(),
39+
method);
3940
}
4041
};
4142

0 commit comments

Comments
 (0)