The real problem is that MS has put hash_map to a different namespace called stdext.
Doing this should help you solve it...
Code: Select all
#include <hash_map>
using namespace stdext;
Hope this helps someone.
Code: Select all
#include <hash_map>
using namespace stdext;