I was integrating some C++ in somelse's one and found out we adopt two different strategies regarding the use of using namespace commands.
For cleanliness of source code, which of the two is the most correct solution?
namespace foo
{
using namespace bar;
}
or
using namespace bar;
namespace foo
{
}
Thanks a lot for your help,
T.