You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
into header files. It's bad practice altogether to use namespace std, but using namespace is a very bad idea in header files. Because you don't know where it might end up being included. And since #include is basically a code copy and paste, very bad results may occur.
The text was updated successfully, but these errors were encountered:
It is horrible practice to put
into header files. It's bad practice altogether to use namespace std, but using namespace is a very bad idea in header files. Because you don't know where it might end up being included. And since #include is basically a code copy and paste, very bad results may occur.
The text was updated successfully, but these errors were encountered: