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

Unified Diff: runtime/vm/flow_graph_type_propagator.h

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month 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 | « runtime/vm/flow_graph_range_analysis_test.cc ('k') | runtime/vm/flow_graph_type_propagator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_; }
« no previous file with comments | « runtime/vm/flow_graph_range_analysis_test.cc ('k') | runtime/vm/flow_graph_type_propagator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698