10/5 Any easy ways to ignore namespaces in gcc 3.2, that is to make std::
part of :: without having to do invasive changes to your code?
\_ "using namespace std;" ?
\_ This falls down because hash_* is in __gnu_cxx. I tried making
another namespace, putting 'using namespace std; using namespace
__gnu_cxx;', and then using that namespace but that didn't work
either. Sorry for not mentioning this earlier.
\_ using namespace __gnu_cxx;
using namespace std;
alternatively:
namespace std
{
using namespace __gnu_cxx;
}
using namespace std;
\_ why do you want to do this? |