标签: c++ boost
我的程序使用boost。 当boost使用std:string const&参数时,所有需要参数bad::alloc (Microsoft C++ exception: std::bad_alloc at memory location ...)的方法都会生成一个std::string。
std:string const&
bad::alloc (Microsoft C++ exception: std::bad_alloc at memory location ...)
std::string
我想我的程序和Boost之间存在某种不兼容的std::string。是否知道这可能是问题以及如何解决?
Boost是使用vcpkg编译的。 在Linux上不会发生此问题。