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

Unified Diff: Source/wtf/LinkedHashSet.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/HashTraits.h ('k') | Source/wtf/ListHashSet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/LinkedHashSet.h
diff --git a/Source/wtf/LinkedHashSet.h b/Source/wtf/LinkedHashSet.h
index e254e150403720916588561a9a0b7b989e819a43..b6d1dc673a2f0fcf273049947d1c1d18353dadab 100644
--- a/Source/wtf/LinkedHashSet.h
+++ b/Source/wtf/LinkedHashSet.h
@@ -295,7 +295,7 @@ struct LinkedHashSetExtractor {
};
template<typename Value, typename ValueTraitsArg, typename Allocator>
-struct LinkedHashSetTraits : public SimpleClassHashTraits<LinkedHashSetNode<Value, Allocator> > {
+struct LinkedHashSetTraits : public SimpleClassHashTraits<LinkedHashSetNode<Value, Allocator>> {
typedef LinkedHashSetNode<Value, Allocator> Node;
typedef ValueTraitsArg ValueTraits;
@@ -601,7 +601,7 @@ template<typename Value, typename U, typename V, typename W>
template<typename HashTranslator, typename T>
inline bool LinkedHashSet<Value, U, V, W>::contains(const T& value) const
{
- return m_impl.template contains<LinkedHashSetTranslatorAdapter<HashTranslator> >(value);
+ return m_impl.template contains<LinkedHashSetTranslatorAdapter<HashTranslator>>(value);
}
template<typename T, typename U, typename V, typename W>
@@ -729,7 +729,7 @@ void deleteAllValues(const LinkedHashSet<ValueType, T, U>& set)
#if !ENABLE(OILPAN)
template<typename T, typename U, typename V>
-struct NeedsTracing<LinkedHashSet<T, U, V> > {
+struct NeedsTracing<LinkedHashSet<T, U, V>> {
static const bool value = false;
};
#endif
« no previous file with comments | « Source/wtf/HashTraits.h ('k') | Source/wtf/ListHashSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698