Closed DJuego closed 5 years ago
Any chance the fix is as simple as adding #include <string>
to the top of cuckoohash_map.hh? We should have that for std::to_string()
, but until now (with GCC at least) we get <string>
indirectly via <stdexcept>
. Perhaps MSVC 2019 requires us to be more explicit here.
Indeed! I confirm that I have tried this solution successfully. Thank you, @toojays. I hope there will soon be an official bugfix in the master branch.
DJuego
Thanks for the find! I added #include <string>
in 4f54e63b42b20a0834bded0feb876a2fd1fdba17. Hopefully that resolves the compile issue on MSVC, but I haven't tried it out myself.
Hi!! Thank you, again, for libcuckoo!
I'm trying to build for the first time in Visual Studio 2019. I'm using the same options as in Visual Studio 2017.
I get:
Compilacion libcuckoo
DJuego