Skip to content

Commit 236f2b7

Browse files
author
Kyu Hyun Chang
committed
Make path_matcher.h compile with gcc 4.9
1 parent 7a19975 commit 236f2b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/include/grpc_transcoding/path_matcher.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,8 @@ bool PathMatcherBuilder<Method>::Register(const std::string& http_method,
508508
const std::string& http_template,
509509
const std::string& body_field_path,
510510
Method method) {
511-
return Register(http_method, http_template, body_field_path, {}, method);
511+
return Register(http_method, http_template, body_field_path,
512+
std::unordered_set<std::string>(), method);
512513
}
513514

514515
} // namespace transcoding

0 commit comments

Comments
 (0)