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

pull/1189/head
Jose Renau 3 years ago
parent 48f72c227b
commit e82b2a48a4
  1. 4
      absl/container/internal/btree.h

@ -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;

Loading…
Cancel
Save