Like the title says, unordered_map isn't compiling for me. I get an error saying "error: namespace "std" has no member "unordered_map""
I'm compiling with this command icc test.cpp -std=c++0x
This is the program I'm trying to compile:
#include <stdio.h>
#include <string>
int main()
{
std::unordered_map<string, int> map;
}