Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Unified Diff: Source/wtf/HashTraits.h

Issue 23464095: WTF::notFound looks too much like a local variable. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/wtf/HashMap.h ('k') | Source/wtf/NotFound.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
{
}
« no previous file with comments | « Source/wtf/HashMap.h ('k') | Source/wtf/NotFound.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698