aboutsummaryrefslogtreecommitdiff
path: root/libjava/gnu
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2007-01-19 17:46:57 +0000
committerKeith Seitz <kseitz@gcc.gnu.org>2007-01-19 17:46:57 +0000
commit6c798f4fc1b8c87f592394070746dc1b54cf8006 (patch)
tree7c45f711234649e464a7946725eafabdc1e16185 /libjava/gnu
parent80e9603862364d0702cf5759de7feaaef26f6b52 (diff)
downloadgcc-6c798f4fc1b8c87f592394070746dc1b54cf8006.zip
gcc-6c798f4fc1b8c87f592394070746dc1b54cf8006.tar.gz
gcc-6c798f4fc1b8c87f592394070746dc1b54cf8006.tar.bz2
natVMFrame.cc: Mark unused parameters with MAYBE_UNUSED.
* gnu/classpath/jdwp/natVMFrame.cc: Mark unused parameters with MAYBE_UNUSED. From-SVN: r120972
Diffstat (limited to 'libjava/gnu')
-rw-r--r--libjava/gnu/classpath/jdwp/natVMFrame.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/libjava/gnu/classpath/jdwp/natVMFrame.cc b/libjava/gnu/classpath/jdwp/natVMFrame.cc
index de3b844..0c00852 100644
--- a/libjava/gnu/classpath/jdwp/natVMFrame.cc
+++ b/libjava/gnu/classpath/jdwp/natVMFrame.cc
@@ -1,6 +1,6 @@
// natFrame.cc -- native support for VMFrame.java
-/* Copyright (C) 2006 Free Software Foundation
+/* Copyright (C) 2006, 2007 Free Software Foundation
This file is part of libgcj.
@@ -9,18 +9,20 @@ Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
#include <gcj/cni.h>
+#include <jvm.h>
#include <gnu/classpath/jdwp/VMFrame.h>
using namespace java::lang;
Object*
-gnu::classpath::jdwp::VMFrame::getValue (jint slot)
+gnu::classpath::jdwp::VMFrame::getValue (MAYBE_UNUSED jint slot)
{
return 0;
}
void
-gnu::classpath::jdwp::VMFrame::setValue (jint slot, Object* value)
+gnu::classpath::jdwp::VMFrame::setValue (MAYBE_UNUSED jint slot,
+ MAYBE_UNUSED Object* value)
{
}