Open jikhashkya opened 1 month ago
Thanks for the report.
It seems to be an issue with g++ 9 as I couldn't reproduce the issue with g++-11 to g++14 (and clang and MSVC in the CI work well). Do you eventually have a more recent version of gcc?
Otherwise could you try this branch https://github.com/Tessil/hopscotch-map/tree/gcc_9_swap?
@Tessil Thanks for the quick response . It does seem to be an issue with g++ 9 since I didn't have that issue with other versions. I don't have access to other versions in the cluster that I'm working right now but I'll try out the branch that you suggested.
Hi,
I'm using a third-party library which uses hopscotch-map. It was working fine until I tried to compile it again and it breaks with the following error:
The error goes away if i replace
m_ht
withthis->m_ht
. But I can't just do that for now since your library is automatically being built my CMake. Any help would be appreciated. P.S. I'm on a Linux machine with gnu-c++ version 9.3.0.Thank you.