Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix: values were not updated (silently skipped) when same key is en…
…countered more than once. This is how std::map is designed. Also used more efficient C++11 std::map::emplace method instead of outdated std::pair::make_pair. Note that xxx.insert(mk_pair(v1,v2)) pattern is used extensively throughout solution so there is a good potential for other bug fixes/improvements
- Loading branch information