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

Unified Diff: src/compiler/typer.cc

Issue 816453005: [turbofan] Cleanup use of virtual, OVERRIDE, FINAL. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
Index: src/compiler/typer.cc
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
index b33ee0c863d26da882553dd5e7ace770d658c249..a170a71512b4be188be53908868e64c3911325ed 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -138,10 +138,10 @@ class LazyTypeCache FINAL : public ZoneObject {
};
-class Typer::Decorator : public GraphDecorator {
+class Typer::Decorator FINAL : public GraphDecorator {
public:
explicit Decorator(Typer* typer) : typer_(typer) {}
- virtual void Decorate(Node* node);
+ void Decorate(Node* node) FINAL;
private:
Typer* typer_;

Powered by Google App Engine
This is Rietveld 408576698