Fix "undefined reference to `fmt::v7::detail::basic_data<void>::digits'"

Remove unused FMT_EXTERN_TEMPLATE_API
This commit is contained in:
Владислав Щапов
2021-06-01 01:50:42 +05:00
committed by Victor Zverovich
parent 7b9d69b827
commit f286139d22
6 changed files with 61 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
#include <iostream>
#include <string>
extern std::string foo();
int main() { std::cout << foo() << std::endl; }