Friday, June 6, 2014

char * in unordered_map issue

do not use unordered_map<char*,int> map
instead use unordered_map<string, int> map since unordered_map is kind of problematic with pointers

No comments:

Post a Comment