Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在我的项目中使用boolinq代码并且它失败了,因为它使用了我的系统上不存在的分配器头文件。我正在使用 Ubuntu,所有其他 STL 类型都在工作。有谁知道我该如何解决这个问题?
C++ 标准中没有这样的头文件。老实说,我不知道他们从哪里得到它,因为我的 Visual Studio(诚然他们使用的是较新版本)也没有它。
包含 out 的注释,您应该会看到它错过了什么符号。std::allocator在<memory>. 如果它需要其他任何东西,您必须找到(可能替换)它或禁用它。
std::allocator
<memory>