Open vigsterkr opened 3 years ago
Sorry for the late reply.
It's effectively due to the usage of std::vector<T>
in the array-hash project. I have to check if I could swap it with a std::deque<T>
. I mainly used std::vector<T>
to be able to use reserve
so that I can then safely move noexcept values without triggering a potential exception.
when creating a
tsl::htrie_map<char, bool>
and trying to insert or emplace an element i'm getting the following error:probably this is due to the difference of implementation of a bitvector, see
std::vector<bool>