| Index: runtime/vm/flow_graph_type_propagator.h
|
| diff --git a/runtime/vm/flow_graph_type_propagator.h b/runtime/vm/flow_graph_type_propagator.h
|
| index 421b76edd0e96fdf43832a2dd32142940373cd86..0e23e5e3bc44fa2df94f0e9d4da13b0b22a221ff 100644
|
| --- a/runtime/vm/flow_graph_type_propagator.h
|
| +++ b/runtime/vm/flow_graph_type_propagator.h
|
| @@ -77,13 +77,10 @@ class FlowGraphTypePropagator : public FlowGraphVisitor {
|
| class RollbackEntry {
|
| public:
|
| // Default constructor needed for the container.
|
| - RollbackEntry()
|
| - : index_(), type_() {
|
| - }
|
| + RollbackEntry() : index_(), type_() {}
|
|
|
| RollbackEntry(intptr_t index, CompileType* type)
|
| - : index_(index), type_(type) {
|
| - }
|
| + : index_(index), type_(type) {}
|
|
|
| intptr_t index() const { return index_; }
|
| CompileType* type() const { return type_; }
|
|
|