Commit 066c1a82 by Copybara-Service

Merge pull request #1189 from renau:master

PiperOrigin-RevId: 452108013
Change-Id: I71fa7bc792d34327680dc3daa96a8d6d4116b49a
parents aeb2dc9c e82b2a48
...@@ -504,8 +504,8 @@ struct SearchResult { ...@@ -504,8 +504,8 @@ struct SearchResult {
template <typename V> template <typename V>
struct SearchResult<V, false> { struct SearchResult<V, false> {
SearchResult() {} SearchResult() {}
explicit SearchResult(V value) : value(value) {} explicit SearchResult(V v) : value(v) {}
SearchResult(V value, MatchKind /*match*/) : value(value) {} SearchResult(V v, MatchKind /*match*/) : value(v) {}
V value; V value;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment