jamboree/bustache

`boost::unordered_map<>` vs `std::unordered_map<>`

mbeutel opened this issue · 1 comments

Is there any reason why Boost's unordered_map<> implementation is used instead of the standard one which is available since C++11?

boost::unordered_map allows incomplete types, while the standard one doesn't guarantee that (depends on your vendor).