This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Patch: link.cc indentation fixes
- From: Tom Tromey <tromey at redhat dot com>
- To: Robert Schuster <theBohemian at gmx dot net>
- Cc: java-patches at gcc dot gnu dot org
- Date: 06 Feb 2006 11:35:34 -0700
- Subject: Re: Patch: link.cc indentation fixes
- References: <43E55DFF.7070905@gmx.net>
- Reply-to: tromey at redhat dot com
>>>>> "Robert" == Robert Schuster <theBohemian@gmx.net> writes:
Robert> as requested I fixed the indentation of my previous patch.
Thanks. One little nit and this is fine.
Robert> - if ( (field->isResolved () ?
Robert> + if ((field->isResolved () ?
Robert> _Jv_equalUtf8Classnames (type_name, field->type->name) :
Robert> _Jv_equalUtf8Classnames (
Lines are split before operators, so...
expr
? true
: false
Tom