Skip to content
Snippets Groups Projects
Commit 9949d695 authored by kseitz's avatar kseitz
Browse files

* gnu/classpath/jdwp/natVMFrame.cc: Mark unused parameters with

        MAYBE_UNUSED.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120972 138bc75d-0d04-0410-961f-82ee72b054a4
parent 2243793b
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,9 @@
* gnu/classpath/jdwp/natVMVirtualMachine.cc: Mark unused parameters
in methods and reformat.
* gnu/classpath/jdwp/natVMFrame.cc: Mark unused parameters with
MAYBE_UNUSED.
2007-01-18 Keith Seitz <keiths@redhat.com>
From Macro Trudel <mtrudel@gmx.ch>:
......
// 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)
{
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment