| Index: src/compiler/graph-reducer.h
|
| diff --git a/src/compiler/graph-reducer.h b/src/compiler/graph-reducer.h
|
| index 5c612baf6ebf753af11b87d4277e0e915506799f..a6cc1f2d94b0b14974907cd37b83ac7d8d81a448 100644
|
| --- a/src/compiler/graph-reducer.h
|
| +++ b/src/compiler/graph-reducer.h
|
| @@ -18,7 +18,7 @@ class Node;
|
|
|
|
|
| // Represents the result of trying to reduce a node in the graph.
|
| -class Reduction FINAL {
|
| +class Reduction final {
|
| public:
|
| explicit Reduction(Node* replacement = NULL) : replacement_(replacement) {}
|
|
|
| @@ -54,7 +54,7 @@ class Reducer {
|
|
|
|
|
| // Performs an iterative reduction of a node graph.
|
| -class GraphReducer FINAL {
|
| +class GraphReducer final {
|
| public:
|
| GraphReducer(Graph* graph, Zone* zone);
|
|
|
|
|