|
From: Gabriel B. <ga...@co...> - 2002-03-21 19:44:32
|
> void BClass::SomeFunction( int32 aFoo ) {
> int32 foo =3D aFoo;
> }
I tend to use the same prefix for parameters, but in implementation I
put the return type on a separate line for readabliity, thus:
void
BClass::SomeFunction( int32 aFoo ) {
...
}
I find this to be more readable. More a matter of taste I guess.
Neiras
--
Random tidbit:
A sense of humor keen enough to show a man his own absurdities will
keep him from the commission of all sins, or nearly all, save those
that are worth committing.
-- Samuel Butler
|