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

Unified Diff: src/scanner-character-streams.h

Issue 1088993003: Replace OVERRIDE->override and FINAL->final since we now require C++11. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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/rewriter.cc ('k') | src/snapshot/serialize.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/scanner-character-streams.h
diff --git a/src/scanner-character-streams.h b/src/scanner-character-streams.h
index a391a659a4a829c6c31c078a643abb043602dc7f..5944d7644572320f33498082ca362d0cdb2df564 100644
--- a/src/scanner-character-streams.h
+++ b/src/scanner-character-streams.h
@@ -90,7 +90,7 @@ class ExternalStreamingStream : public BufferedUtf16CharacterStream {
virtual ~ExternalStreamingStream() { delete[] current_data_; }
- size_t BufferSeekForward(size_t delta) OVERRIDE {
+ size_t BufferSeekForward(size_t delta) override {
// We never need to seek forward when streaming scripts. We only seek
// forward when we want to parse a function whose location we already know,
// and when streaming, we don't know the locations of anything we haven't
@@ -99,7 +99,7 @@ class ExternalStreamingStream : public BufferedUtf16CharacterStream {
return 0;
}
- size_t FillBuffer(size_t position) OVERRIDE;
+ size_t FillBuffer(size_t position) override;
private:
void HandleUtf8SplitCharacters(size_t* data_in_buffer);
« no previous file with comments | « src/rewriter.cc ('k') | src/snapshot/serialize.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698