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

Unified Diff: Source/wtf/HashSet.h

Issue 835953003: Fix template angle bracket syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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/HashMapTest.cpp ('k') | Source/wtf/HashSetTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/HashSet.h
diff --git a/Source/wtf/HashSet.h b/Source/wtf/HashSet.h
index 55a6e5d88a0f42a9199b084ff433b523bf3a8f75..b1fea0aeab005ed23be237a00b8b2ce278f393d4 100644
--- a/Source/wtf/HashSet.h
+++ b/Source/wtf/HashSet.h
@@ -176,14 +176,14 @@ namespace WTF {
typename HashSet<Value, HashFunctions, Traits, Allocator>::iterator
inline HashSet<Value, HashFunctions, Traits, Allocator>::find(const T& value) const
{
- return m_impl.template find<HashSetTranslatorAdapter<HashTranslator> >(value);
+ return m_impl.template find<HashSetTranslatorAdapter<HashTranslator>>(value);
}
template<typename Value, typename HashFunctions, typename Traits, typename Allocator>
template<typename HashTranslator, typename T>
inline bool HashSet<Value, HashFunctions, Traits, Allocator>::contains(const T& value) const
{
- return m_impl.template contains<HashSetTranslatorAdapter<HashTranslator> >(value);
+ return m_impl.template contains<HashSetTranslatorAdapter<HashTranslator>>(value);
}
template<typename T, typename U, typename V, typename W>
@@ -197,7 +197,7 @@ namespace WTF {
inline typename HashSet<Value, HashFunctions, Traits, Allocator>::AddResult
HashSet<Value, HashFunctions, Traits, Allocator>::add(const T& value)
{
- return m_impl.template addPassingHashCode<HashSetTranslatorAdapter<HashTranslator> >(value, value);
+ return m_impl.template addPassingHashCode<HashSetTranslatorAdapter<HashTranslator>>(value, value);
}
template<typename T, typename U, typename V, typename W>
@@ -274,7 +274,7 @@ namespace WTF {
#if !ENABLE(OILPAN)
template<typename T, typename U, typename V>
- struct NeedsTracing<HashSet<T, U, V> > {
+ struct NeedsTracing<HashSet<T, U, V>> {
static const bool value = false;
};
#endif
« no previous file with comments | « Source/wtf/HashMapTest.cpp ('k') | Source/wtf/HashSetTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698