$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Larry Evans (jcampbell3_at_[hidden])
Date: 2001-07-01 07:08:58
David Abrahams wrote:
> See http://groups.yahoo.com/group/boost/files/boost-coding-standard.html
contains:
> 4.3. The return type and storage class of a function go on the same line as the name.
>
I find it easier to locate a function if they're all lined up in the same column. With the above recommendation,
this is not always possible. I'd suggest:
rtype_0
fun_0(args0)
{}
rtype_1
fun_1(args1)
;
...
That way, the most important part, the name, is "highlighted".