commit | 317eb64f5b9aafcd158b8b701cf46a0f697506a5 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Mar 16 14:19:10 2012 -0700 |
committer | Elliott Hughes <enh@google.com> | Fri Mar 16 14:19:10 2012 -0700 |
tree | c487d42e792bc9d05f033f6abe339e62f7e51163 | |
parent | 68d4d6728cb15ef2662965c10fa426a1c272c33f [diff] |
Fix another unused parameter. Don't know why I don't see this locally; it's genuine (found by the build server). Change-Id: I9bbc3e1c8a08ffa50b1a36503b2fa73b26fd3f02
diff --git a/src/dex_instruction_visitor_test.cc b/src/dex_instruction_visitor_test.cc index 6dbc4d2..8f42b0c 100644 --- a/src/dex_instruction_visitor_test.cc +++ b/src/dex_instruction_visitor_test.cc
@@ -35,7 +35,7 @@ CountVisitor() : count_(0) {} - void Do_Default(const Instruction* inst) { + void Do_Default(const Instruction*) { ++count_; } };