This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: [SCALUG] Re: c++ question
- From: "Dockeen" <dockeen at mchsi dot com>
- To: <gcc-help at gcc dot gnu dot org>
- Date: Fri, 27 Dec 2002 13:13:50 -0600
- Subject: Re: [SCALUG] Re: c++ question
You can also qualify the name of the function when you use
it, i.e.
std::cout << "Wayne is a nitwit\n";
There are some coding standard you will run across from time
to time in some unused SDPs that will forbid to some degree
using "using"
Wayne