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

Unified Diff: dart/runtime/vm/intermediate_language.h

Issue 14341012: Fix another unused-private-field clang error. (Closed) Base URL: https://git.chromium.org/git/external/dart/bleeding_edge.git@master
Patch Set: Created 7 years, 8 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/vm/intermediate_language.h
diff --git a/dart/runtime/vm/intermediate_language.h b/dart/runtime/vm/intermediate_language.h
index 05b0a215a6840f864b5ab372ccc2c27eb3176b56..d124490334b5e6fb830e730b710333f81b188ed8 100644
--- a/dart/runtime/vm/intermediate_language.h
+++ b/dart/runtime/vm/intermediate_language.h
@@ -1073,7 +1073,7 @@ class BlockEntryInstr : public Instruction {
class ForwardInstructionIterator : public ValueObject {
public:
explicit ForwardInstructionIterator(BlockEntryInstr* block_entry)
- : block_entry_(block_entry), current_(block_entry) {
+ : current_(block_entry) {
Advance();
}
@@ -1090,7 +1090,6 @@ class ForwardInstructionIterator : public ValueObject {
Instruction* Current() const { return current_; }
private:
- BlockEntryInstr* block_entry_;
Instruction* current_;
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698