Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* unordered_map is a form of map containter, use unordered_map::find(KeyType key) instead, which returns unordered_map::iterator, essentially pointer tostd::pair< KeyType, ValueType >. Or you can use unordered_map::operator[](KeyType key) to get access to element pointed by the key variable. Note that it will create new element in case it doesn't exist yet. See http://en.cppreference.com/w/cpp/container/unordered_map for more info. * Use newer GCC (at least 4.7) with -std=c++11 option, and you will get standardized std::unordered_map instead of tr1::unordered_map Fix adzerk#9
- Loading branch information