我正在使用 g++ 在 Eclipse CDT 中构建 C++ 代码,但出现以下链接器错误:
Undefined symbols for architecture x86_64:
"std::__throw_bad_function_call()", referenced from:
std::function<void (graphics::RenderingContext*)>::operator()(graphics::RenderingContext*) const in GameWindow.o
我std::function
在一个名为 GameWindow 的类中有成员。
有什么我必须链接到的东西才能获得std::function
用于正确链接的代码吗?