Re: [boost] coding style

2003-03-06 Thread David Abrahams
Terje Slettebø <[EMAIL PROTECTED]> writes: >>From: "Joel Young" <[EMAIL PROTECTED]> > >> I find other people's code with long linelengths is cause by either too >> much nesting or by putting too many concepts on one line... > > That doesn't have to be the case. There can easily be lines longer tha

Re: [boost] coding style

2003-03-06 Thread Terje Slettebø
>From: "Joel Young" <[EMAIL PROTECTED]> > I find other people's code with long linelengths is cause by either too > much nesting or by putting too many concepts on one line... That doesn't have to be the case. There can easily be lines longer than 80 characters, which only contain one statement o

Re: [boost] coding style

2003-03-06 Thread Brian Gray
I'd say it's primarily the 80-column terminal limit that is the reasoning for this. I personally only go to 79 columns so that when I work on a terminal and I type that 80th line the insertion pointer doesn't wrap. Aside from that, on my current monitor (1152 pixels wide), I can get 2 CodeWar

Re: [boost] coding style

2003-03-06 Thread David Abrahams
"Rozental, Gennadiy" <[EMAIL PROTECTED]> writes: >> >> > in favor of 80-column text is just that >> >> > So I wondered what the general opinion of boost developers >> is on this issue, >> >> I am in favor of 72 column lines myself. This allows me to have three >> comfortable columns of code o

RE: [boost] coding style

2003-03-06 Thread Rozental, Gennadiy
> > > in favor of 80-column text is just that > > > So I wondered what the general opinion of boost developers > is on this issue, > > I am in favor of 72 column lines myself. This allows me to have three > comfortable columns of code on the screen at once. This is namely the reason why I w

Re: [boost] coding style

2003-03-06 Thread Joel Young
From: Paul Beardsley <[EMAIL PROTECTED]> > in favor of 80-column text is just that > So I wondered what the general opinion of boost developers is on this issue, I am in favor of 72 column lines myself. This allows me to have three comfortable columns of code on the screen at once. I

Re: [boost] coding style

2003-03-06 Thread David Abrahams
Paul Beardsley <[EMAIL PROTECTED]> writes: > I have a question about coding style which maybe fits the list > criteria of "technical discussion about a library'. > You can find answers to your questions at http://groups.yahoo.com/group/boost/files/coding_guidelines.html -- Dave Abrahams Boost C

Re: [boost] coding style

2003-03-06 Thread Greg Colvin
(d) It makes it easier to work with a fixed-width terminal or terminal emulator. You may think this is an obsolete requirment, but I spend most of my working days using a VT-100 emulator connected to various servers running just Oracle, gdb, gcc, vi, and a shell. At 09:34 AM 3/6/2003, Paul Be

[boost] coding style

2003-03-06 Thread Paul Beardsley
Hello, I have a question about coding style which maybe fits the list criteria of "technical discussion about a library'. The Boost style guide recommends 80 column text without giving any justification for this.  What is your opinion of this constraint? The three supporting arguments I hear are (