嗨,我正在使用Google sparsehash库。当我编译代码(Visual Studio 2005)时,出现以下错误...
    严重错误C1083:无法打开包含文件:'sparsehash / sparse_hash_map':没有此类文件或目录

这个问题背后的原因是什么,它的解决方案是什么。
提前致谢...

最佳答案

确保已安装https://code.google.com/p/sparsehash/并且正确更新了makefile以包含此sparsehash中的头文件,即类似

-I ./sparsehash/include

如果使用Visual Studio,请确保您的项目设置引用文件所在的路径。

10-07 21:43