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

Unified Diff: Source/wtf/HashMap.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/HashIterators.h ('k') | Source/wtf/HashMapTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/HashMap.h
diff --git a/Source/wtf/HashMap.h b/Source/wtf/HashMap.h
index 43484084d9706cf72e4df5850f2a05b47a0395c1..98ef694b38e26935ee0cc1b5d8ef9a8d88a7ca32 100644
--- a/Source/wtf/HashMap.h
+++ b/Source/wtf/HashMap.h
@@ -331,7 +331,7 @@ namespace WTF {
inline typename HashMap<T, U, V, W, X, Y>::iterator
HashMap<T, U, V, W, X, Y>::find(const TYPE& value)
{
- return m_impl.template find<HashMapTranslatorAdapter<ValueTraits, HashTranslator> >(value);
+ return m_impl.template find<HashMapTranslatorAdapter<ValueTraits, HashTranslator>>(value);
}
template<typename T, typename U, typename V, typename W, typename X, typename Y>
@@ -339,7 +339,7 @@ namespace WTF {
inline typename HashMap<T, U, V, W, X, Y>::const_iterator
HashMap<T, U, V, W, X, Y>::find(const TYPE& value) const
{
- return m_impl.template find<HashMapTranslatorAdapter<ValueTraits, HashTranslator> >(value);
+ return m_impl.template find<HashMapTranslatorAdapter<ValueTraits, HashTranslator>>(value);
}
template<typename T, typename U, typename V, typename W, typename X, typename Y>
@@ -347,14 +347,14 @@ namespace WTF {
inline bool
HashMap<T, U, V, W, X, Y>::contains(const TYPE& value) const
{
- return m_impl.template contains<HashMapTranslatorAdapter<ValueTraits, HashTranslator> >(value);
+ return m_impl.template contains<HashMapTranslatorAdapter<ValueTraits, HashTranslator>>(value);
}
template<typename T, typename U, typename V, typename W, typename X, typename Y>
typename HashMap<T, U, V, W, X, Y>::AddResult
HashMap<T, U, V, W, X, Y>::inlineAdd(KeyPeekInType key, MappedPassInReferenceType mapped)
{
- return m_impl.template add<HashMapTranslator<ValueTraits, HashFunctions> >(key, mapped);
+ return m_impl.template add<HashMapTranslator<ValueTraits, HashFunctions>>(key, mapped);
}
template<typename T, typename U, typename V, typename W, typename X, typename Y>
@@ -374,7 +374,7 @@ namespace WTF {
typename HashMap<T, U, V, W, X, Y>::AddResult
HashMap<T, U, V, W, X, Y>::add(const TYPE& key, MappedPassInType value)
{
- return m_impl.template addPassingHashCode<HashMapTranslatorAdapter<ValueTraits, HashTranslator> >(key, value);
+ return m_impl.template addPassingHashCode<HashMapTranslatorAdapter<ValueTraits, HashTranslator>>(key, value);
}
template<typename T, typename U, typename V, typename W, typename X, typename Y>
@@ -494,7 +494,7 @@ namespace WTF {
#if !ENABLE(OILPAN)
template<typename T, typename U, typename V, typename W, typename X>
-struct NeedsTracing<HashMap<T, U, V, W, X> > {
+struct NeedsTracing<HashMap<T, U, V, W, X>> {
static const bool value = false;
};
#endif
« no previous file with comments | « Source/wtf/HashIterators.h ('k') | Source/wtf/HashMapTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698