Chromium Code Reviews| Index: Source/wtf/HashTraits.h |
| diff --git a/Source/wtf/HashTraits.h b/Source/wtf/HashTraits.h |
| index a1d4c12a4833aacdba4e19719c482c3a56ee2e9e..1537bb1a0bbbd031fa45e642704fa7db1fac677c 100644 |
| --- a/Source/wtf/HashTraits.h |
| +++ b/Source/wtf/HashTraits.h |
| @@ -207,9 +207,9 @@ namespace WTF { |
| { |
| } |
| - KeyValuePair(const KeyTypeArg& key, const ValueTypeArg& value) |
| - : key(key) |
| - , value(value) |
| + KeyValuePair(const KeyTypeArg& _key, const ValueTypeArg& _value) |
| + : key(_key) |
| + , value(_value) |
| { |
| } |