SyntaxFix
Write A Post
Hire A Developer
Questions
#include <tr1/unordered_map> will get you next-standard C++ unique hash container. Usage:
#include <tr1/unordered_map>
std::tr1::unordered_map<std::string,int> my_map; my_map["answer"] = 42; printf( "The answer to life and everything is: %d\n", my_map["answer"] );