Commit e82b2a48 by Jose Renau

Avoid variable shadowing which can be a compile error depending on compile flags

parent 48f72c22
......@@ -504,8 +504,8 @@ struct SearchResult {
template <typename V>
struct SearchResult<V, false> {
SearchResult() {}
explicit SearchResult(V value) : value(value) {}
SearchResult(V value, MatchKind /*match*/) : value(value) {}
explicit SearchResult(V va) : value(va) {}
SearchResult(V va, MatchKind /*match*/) : value(va) {}
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