1
0
mirror of https://github.com/fmtlib/fmt.git synced 2025-03-13 19:19:10 +00:00
Владислав Щапов f286139d22 Fix "undefined reference to `fmt::v7::detail::basic_data<void>::digits'"
Remove unused FMT_EXTERN_TEMPLATE_API
2021-06-02 14:33:17 -07:00

7 lines
114 B
C++

#include <iostream>
#include <string>
extern std::string foo();
int main() { std::cout << foo() << std::endl; }