我正在尝试使用FTM在C ++中进行字符串插值,但是在尝试编译时会给我一些链接器错误。
我写了以下课程:
#include <string>
#include "include/fmt/format.h"
class A {
public:
std::string sayHi(std::string name) {
return fmt::format("Hello {0}", name);
}
};
在我的主要结果中使用该类会导致LNK2001和LNK2019错误。以下是其中的一小部分示例: 我猜这是由于库使用不正确造成的。我是否缺少一些应该设置的全局变量?