To use using namespace std or not to use?

With the understanding of the hazards of using using namespace std; is it then considered best practice to forgo making the namespace std global space and instead just qualify all its functions with the prefix std::?

It’ll come to that eventually. Feel free to start doing that right away though.

1 Like

Alright thanks!

Privacy & Terms