From 84a6daa400700b4344accd0ed6938fdfae39253a Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Thu, 1 Sep 2011 11:36:00 -0600 Subject: [PATCH] fix unused parameter warning --- src/compile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile.cpp b/src/compile.cpp index 0dbcb854cc..72941ebe60 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -9178,7 +9178,7 @@ fixupCode(Thread* t, uintptr_t* map, unsigned size, uint8_t* code, } void -fixupMethods(Thread* t, object map, BootImage* image, uint8_t* code) +fixupMethods(Thread* t, object map, BootImage* image UNUSED, uint8_t* code) { for (HashMapIterator it(t, map); it.hasMore();) { object c = tripleSecond(t, it.next());