I was writing a program for a class using Visual C++ on my home computer, however, I tried to run it on school linux computers and I get these errors.
std::tr1::unordered_map <string, Word*> map;
Both of these errors appear on the line of code above
ISO C++ forbids declaration of ‘unordered_map’ with no type
expected ‘;’ before ‘<’ token
Originally I used hash_map but found out that could only be used in Visual C++
Thanks