diff options
author | Brian Carlstrom <bdc@google.com> | 2013-07-17 23:40:20 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-07-18 00:12:43 -0700 |
commit | 0cd7ec2dcd8d7ba30bf3ca420b40dac52849876c (patch) | |
tree | 525a0f99f9381156367c988133b5d51d5dfef6f7 /compiler/dex/dataflow_iterator.h | |
parent | f69863b3039fc621ff4250e262d2a024d5e79ec8 (diff) | |
download | art-0cd7ec2dcd8d7ba30bf3ca420b40dac52849876c.zip art-0cd7ec2dcd8d7ba30bf3ca420b40dac52849876c.tar.gz art-0cd7ec2dcd8d7ba30bf3ca420b40dac52849876c.tar.bz2 |
Fix cpplint whitespace/blank_line issues
Change-Id: Ice937e95e23dd622c17054551d4ae4cebd0ef8a2
Diffstat (limited to 'compiler/dex/dataflow_iterator.h')
-rw-r--r-- | compiler/dex/dataflow_iterator.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/dex/dataflow_iterator.h b/compiler/dex/dataflow_iterator.h index 1946869..e427862 100644 --- a/compiler/dex/dataflow_iterator.h +++ b/compiler/dex/dataflow_iterator.h @@ -41,7 +41,6 @@ namespace art { */ class DataflowIterator { public: - virtual ~DataflowIterator() {} // Return the next BasicBlock* to visit. @@ -81,7 +80,6 @@ namespace art { GrowableArray<int>* block_id_list_; int idx_; bool changed_; - }; // DataflowIterator class ReachableNodesIterator : public DataflowIterator { @@ -106,7 +104,6 @@ namespace art { class PostOrderDfsIterator : public DataflowIterator { public: - PostOrderDfsIterator(MIRGraph* mir_graph, bool is_iterative) : DataflowIterator(mir_graph, is_iterative, 0, mir_graph->GetNumReachableBlocks(), false) { |