So for a while I've been using...
using namespace::std;
and recently I realized that's supposed to be
using namespace std;
Can somebody explain to me why what I was doing worked, and how it differs from the correct way of declaring the usage of a certain namespace?