
6 May
2010
6 May
'10
12:55 p.m.
Robert Jones skrev:
On Thu, May 6, 2010 at 10:46 AM, Thorsten Ottosen <nesotto@cs.aau.dk> wrote:
stop using
using namespace foo::bar;
:-)
Seriously, people really need to qualify their function calls.
This is/should be a C++ coding guideline. Item 13 from
http://bulldozer00.wordpress.com/2010/02/01/project-specific-coding-guidelin...
reads
Minimize “using” directives, liberally employ “using” declarations to keep verbosity low.
I don't agree with the liberal use of using declarations. Namespace aliases are much better IMO. -Thorsten