在C ++中使用FMT进行字符串插值的链接器错误

时间:2019-12-02 11:20:16

标签: c++ c++11 fmt

我正在尝试使用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错误。以下是其中的一小部分示例: enter image description here 我猜这是由于库使用不正确造成的。我是否缺少一些应该设置的全局变量?

0 个答案:

没有答案