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
game.cpp contains the statement using namespace std;. This is bad practice and should be removed to avoid potential name conflicts between libraries. Generally you should refer to everything with the std:: prefix (or whatever namespace you need).
The text was updated successfully, but these errors were encountered:
game.cpp contains the statement
using namespace std;
. This is bad practice and should be removed to avoid potential name conflicts between libraries. Generally you should refer to everything with thestd::
prefix (or whatever namespace you need).The text was updated successfully, but these errors were encountered: