summaryrefslogtreecommitdiff
path: root/src/class_linker_test.cc
diff options
context:
space:
mode:
author Elliott Hughes <enh@google.com> 2012-03-16 12:48:31 -0700
committer Elliott Hughes <enh@google.com> 2012-03-16 12:48:31 -0700
commit1bac54ffa933fbe9b92b62437577f2f4583eff1a (patch)
treea27134343ed3cd45a286c3a68b9a4469e70f13e7 /src/class_linker_test.cc
parent96970cdab3e28511322ce37fa578f6eff8931d72 (diff)
Fix all our unused parameter warnings so we let GCC report them.
There were a couple of genuine bugs here (fixed), plus there's a missing feature in trace.cc that I've just added a TODO for. Also note that I haven't touched the compilers; this warning is still explicitly disabled for that code. I'll do that when there's less going on in those directories. Change-Id: Ic3570bf82411a07c7530bfaf1995ac995b9fc00f
Diffstat (limited to 'src/class_linker_test.cc')
-rw-r--r--src/class_linker_test.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/class_linker_test.cc b/src/class_linker_test.cc
index a6a58d6121..f505d58eb8 100644
--- a/src/class_linker_test.cc
+++ b/src/class_linker_test.cc
@@ -130,7 +130,7 @@ class ClassLinkerTest : public CommonTest {
EXPECT_STREQ(kh.GetDescriptor(), "Ljava/io/Serializable;");
}
- void AssertMethod(Class* klass, Method* method) {
+ void AssertMethod(Method* method) {
MethodHelper mh(method);
EXPECT_TRUE(method != NULL);
EXPECT_TRUE(method->GetClass() != NULL);
@@ -226,14 +226,14 @@ class ClassLinkerTest : public CommonTest {
for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
Method* method = klass->GetDirectMethod(i);
- AssertMethod(klass, method);
+ AssertMethod(method);
EXPECT_TRUE(method->IsDirect());
EXPECT_EQ(klass, method->GetDeclaringClass());
}
for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
Method* method = klass->GetVirtualMethod(i);
- AssertMethod(klass, method);
+ AssertMethod(method);
EXPECT_FALSE(method->IsDirect());
EXPECT_TRUE(method->GetDeclaringClass()->IsAssignableFrom(klass));
}
@@ -322,7 +322,7 @@ class ClassLinkerTest : public CommonTest {
}
}
- static void TestRootVisitor(const Object* root, void* arg) {
+ static void TestRootVisitor(const Object* root, void*) {
EXPECT_TRUE(root != NULL);
}
};