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
It's like TEST(WriterTest, WriteUIntPtr) uses internal::count_digits<4>(uintptr_t) which is supposed to stay in implementation test (format-impl-test) only.
When I tried to build test in DLL mode, it failed at
format-test.exe
linking :It's like
TEST(WriterTest, WriteUIntPtr)
usesinternal::count_digits<4>(uintptr_t)
which is supposed to stay in implementation test (format-impl-test
) only.However when I look at it :
How come it end up refer to
internal::count_digits<4>(uintptr_t)
?Should
TEST(WriterTest, WriteUIntPtr)
be moved to implementation test?The text was updated successfully, but these errors were encountered: