[haiku-development] Re: Coding Style clarification/vote

  • From: Artur Wyszynski <aljen-mlists@xxxxxxx>
  • To: haiku-development@xxxxxxxxxxxxx
  • Date: Mon, 29 Jun 2009 22:42:54 +0200

Axel Dörfler pisze:
Hi there,

just a minor thing about further completing our coding style document (and practice): 1) After the license header (and eventual header guard), should there be one or two blank lines between the contents? I prefer two as that's what we use everywhere else to separate sections, but most seem to prefer a single blank line.
I prefer two too

2) To call the constructors of the inherited class, and members, we have two different style in our repository:
a)      Class::Class()
                : InheritedClass(),
                fMember()
        {
        }

maybe
        Class::Class()
                : InheritedClass()
                , fMember()
        {
        }
with a collon before variable name, as it's easier to for example add, remove, #ifdef vars ? (that's used at my work and i like that way :)

regards, aljen


Other related posts: