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

Unified Diff: Source/wtf/text/TextPosition.cpp

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/text/TextPosition.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/TextPosition.cpp
diff --git a/Source/wtf/text/TextPosition.cpp b/Source/wtf/text/TextPosition.cpp
index b3fce56502a5d2b950dd424c322093f8b059b903..b9b443e05864e480e25472bdbd1508e82ac998b4 100644
--- a/Source/wtf/text/TextPosition.cpp
+++ b/Source/wtf/text/TextPosition.cpp
@@ -30,9 +30,9 @@
namespace WTF {
-PassOwnPtr<Vector<unsigned> > lineEndings(const String& text)
+PassOwnPtr<Vector<unsigned>> lineEndings(const String& text)
{
- OwnPtr<Vector<unsigned> > result(adoptPtr(new Vector<unsigned>()));
+ OwnPtr<Vector<unsigned>> result(adoptPtr(new Vector<unsigned>()));
unsigned start = 0;
while (start < text.length()) {
« no previous file with comments | « Source/wtf/text/TextPosition.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698