On 21/07/2013 17:56, Neil wrote:
Won't that cause confusion if someone accidentally has both using namespace mozilla; and using namespace std; at the same time?
Possibly but our coding guidelines suggest that we avoid using ...; statements preferring to wrap code into namespace ... { ... }; constructs. This seems to have been enforced well within our code as I could find only 55 instances of "using namespace std;" in mozilla-central and a significant number of them appear in files that we have imported.
Gabriele _______________________________________________ dev-platform mailing list [email protected] https://lists.mozilla.org/listinfo/dev-platform

