sparsepp icon indicating copy to clipboard operation
sparsepp copied to clipboard

A fast, memory efficient hash map for C++

Results 4 sparsepp issues
Sort by recently updated
recently updated
newest added

Hi @greg7mdp, Thanks again for both sparsepp and parallel-hashmap! I wanted to report a (fairly verbose) compiler warning I get when using sparsepp within some of our code. Specifically, I...

I have a class member like this: ``` HashMap _classes;// HashMap is sparse_hash_map alias ``` And it will get following errors: ``` In file included from /usr/include/c++/7/memory:80:0, from /home/lzx/LiVM/include/sparsepp/spp.h:53, from...

Linux/Darwin gcc/clang MWE ``` spp::sparse_hash_map map0; map0.emplace(0, 0); auto map1 = std::move(map0); //map0 = spp::sparse_hash_map{}; // uncomment this to pass the test auto found = map0.find(0); // segfaults here CHECK(found...

Hello, It would be easier to use if this library was exported as Conan package.