You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my specific setup (I have integrated fmtlib and its unit tests into a custom build system), I'm getting the following linker error in the unit tests:
fmt/test/format-test.cc:216: undefined reference to `fmt::v6::internal::is_output_iterator<char*>::value'
The compiler is GCC8. On Windows it works.
According to https://stackoverflow.com/a/30277639 using static const bool value = ... is probably not a good idea. But it might also be me doing something wrong ...
The text was updated successfully, but these errors were encountered:
In my specific setup (I have integrated fmtlib and its unit tests into a custom build system), I'm getting the following linker error in the unit tests:
The compiler is GCC8. On Windows it works.
According to https://stackoverflow.com/a/30277639 using
static const bool value = ...
is probably not a good idea. But it might also be me doing something wrong ...The text was updated successfully, but these errors were encountered: