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

Unified Diff: Source/platform/PODIntervalTree.h

Issue 858663002: Fix template angle bracket syntax in platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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/platform/PODFreeListArenaTest.cpp ('k') | Source/platform/PODIntervalTreeTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/PODIntervalTree.h
diff --git a/Source/platform/PODIntervalTree.h b/Source/platform/PODIntervalTree.h
index 93f27eba0f429efbfed01283d132196f3e384280..5a2f462b06ab3b74bb086c491d5fe251ba5a24f2 100644
--- a/Source/platform/PODIntervalTree.h
+++ b/Source/platform/PODIntervalTree.h
@@ -70,7 +70,7 @@ private:
// supports efficient (O(lg n)) insertion, removal and querying of
// intervals in the tree.
template<class T, class UserData = void*>
-class PODIntervalTree final : public PODRedBlackTree<PODInterval<T, UserData> > {
+class PODIntervalTree final : public PODRedBlackTree<PODInterval<T, UserData>> {
WTF_MAKE_NONCOPYABLE(PODIntervalTree);
public:
// Typedef to reduce typing when declaring intervals to be stored in
@@ -254,7 +254,7 @@ private:
#ifndef NDEBUG
// Support for printing PODIntervals at the PODRedBlackTree level.
template<class T, class UserData>
-struct ValueToString<PODInterval<T, UserData> > {
+struct ValueToString<PODInterval<T, UserData>> {
static String string(const PODInterval<T, UserData>& interval)
{
return interval.toString();
« no previous file with comments | « Source/platform/PODFreeListArenaTest.cpp ('k') | Source/platform/PODIntervalTreeTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698