Hi I want to create a typedef with a std::map, but the compiler is returning the following error: “erro: wrong number of template arguments (2, should be 4)”
Code:
typedef std::map<unsigned int, float> AcumulatorHash;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since you don’t provide a complete program, I have to use my psychic powers.
My crystal ball says that you need to add
#include <map>to the beginning of your source code.