You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I made a quick attempt to add this into my codebase as a drop-in replacement for std::unordered_map. Mostly it worked fine but there were a few errors. I haven't tracked them all down, but one of them is:
for (TableMap::local_iterator it = tables.begin(bucket); it != tables.end(bucket); it++) {
^~~~~~~~
...
const_iterator end() const
^~~
ska/bytell_hash_map.hpp:402:20: note: candidate expects 0 arguments, 1 provided
Based on the description of unordered_map's bucket interface on cppreference, it looks bucket_size and the related form of begin() also need to be implemented.
I made a quick attempt to add this into my codebase as a drop-in replacement for std::unordered_map. Mostly it worked fine but there were a few errors. I haven't tracked them all down, but one of them is:
It's trying to use this form of end() from http://www.cplusplus.com/reference/unordered_map/unordered_map/end/
Thanks!
The text was updated successfully, but these errors were encountered: