jamboree / bustache

C++20 implementation of {{ mustache }}
82 stars 10 forks source link

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

Closed mbeutel closed 5 years ago

mbeutel commented 5 years ago

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

jamboree commented 5 years ago

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