This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Patch: natMethod fix
- From: Tom Tromey <tromey at redhat dot com>
- To: Anthony Green <green at cygnus dot com>
- Cc: java-patches at gcc dot gnu dot org
- Date: 28 Feb 2002 12:14:50 -0700
- Subject: Re: Patch: natMethod fix
- References: <200202281549.HAA24956@makita.cygnus.com>
- Reply-to: tromey at redhat dot com
>>>>> "Anthony" == Anthony Green <green@cygnus.com> writes:
Anthony> I found this omission (handling of FFI_TYPE_POINTER) while
Anthony> running rhino. I've also moved the constructor test above
Anthony> the switch as a minor optimization.
Anthony> Ok for branch and trunk?
Yes, thanks.
Anthony> + else
Anthony> + switch (rtype->type)
Anthony> + {
I think there should be braces around the switch:
else
{
switch (...)
Tom