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

Unified Diff: src/scanner.h

Issue 3185026: Reordered function entries in PreParse data to be ordered by start position. (Closed)
Patch Set: Added parentheses. Created 10 years, 4 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 | « src/parser.cc ('k') | src/utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/scanner.h
diff --git a/src/scanner.h b/src/scanner.h
index 53aaad65e610d0b3a05abc5ef3c9eff1aaede5e4..8d6184697fa58aed313d22aad77dacf1efb6667a 100644
--- a/src/scanner.h
+++ b/src/scanner.h
@@ -77,7 +77,7 @@ class UTF8Buffer {
static const char kEndMarker = '\x00';
private:
static const int kInitialCapacity = 256;
- SequenceCollector<char> buffer_;
+ SequenceCollector<char, 4> buffer_;
void AddCharSlow(uc32 c);
};
« no previous file with comments | « src/parser.cc ('k') | src/utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698