Re: Promoting unsigned long int to long int
- From: pereges <Broli00@xxxxxxxxx>
- Date: Mon, 30 Jun 2008 09:57:45 -0700 (PDT)
On Jun 30, 9:44 pm, j...@xxxxxxxxxxx (Jens Thoms Toerring) wrote:
You don't have to put all arguments etc. on a single line, e.g.
void
quicksort( vector ** parent_vpa,
unsigned long left,
unsigned long right,
unsigned char axis )
will do nicely and may even increases readabilty (and there's
still space for adding a short comment;-)
Just a style question (I'm cleaning up my code)
Which of the two in your opinion is better ?
void quicksort( vector ** parent_vpa,
unsigned long left,
unsigned long right,
unsigned char axis ) {
....
....
}
OR
void quicksort( vector ** parent_vpa,
unsigned long left,
unsigned long right,
unsigned char axis )
{
....
....
}
.
- Follow-Ups:
- Re: Promoting unsigned long int to long int
- From: Jens Thoms Toerring
- Re: Promoting unsigned long int to long int
- References:
- Promoting unsigned long int to long int
- From: pereges
- Re: Promoting unsigned long int to long int
- From: Keith Thompson
- Re: Promoting unsigned long int to long int
- From: pereges
- Re: Promoting unsigned long int to long int
- From: Jens Thoms Toerring
- Promoting unsigned long int to long int
- Prev by Date: Re: Promoting unsigned long int to long int
- Next by Date: Re: OOP
- Previous by thread: Re: Promoting unsigned long int to long int
- Next by thread: Re: Promoting unsigned long int to long int
- Index(es):