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

Unified Diff: src/ostreams.h

Issue 797943002: Consistently use only one of virtual/OVERRIDE/FINAL. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Removed temporary hack. Created 6 years 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/optimizing-compiler-thread.cc ('k') | src/ppc/code-stubs-ppc.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ostreams.h
diff --git a/src/ostreams.h b/src/ostreams.h
index 65ae2ff1ff0218afd0d6ff61f0d354f819e68e48..56787f7c126a2d1ff0be295652b247354816170c 100644
--- a/src/ostreams.h
+++ b/src/ostreams.h
@@ -22,8 +22,8 @@ class OFStreamBase : public std::streambuf {
explicit OFStreamBase(FILE* f);
virtual ~OFStreamBase();
- virtual int_type sync() FINAL;
- virtual int_type overflow(int_type c) FINAL;
+ int_type sync() FINAL;
+ int_type overflow(int_type c) FINAL;
private:
FILE* const f_;
« no previous file with comments | « src/optimizing-compiler-thread.cc ('k') | src/ppc/code-stubs-ppc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698