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
When using the Visual Studio compiler option /Zc:wchar_t-, the compiler will replace the type wchar_t with a typedef. Thus the following error is generated during compilation:
doctest.h(2587): error C2766: explicit specialization; 'const char *doctest::detail::type_to_string<wchar_t>(void)' has already been defined
doctest.h(2585): note: see previous definition of 'type_to_string'
doctest version: v2.2.3
Operating System: Windows 10
Compiler+version: Visual Studio 14.0
The text was updated successfully, but these errors were encountered:
Description
When using the Visual Studio compiler option
/Zc:wchar_t-
, the compiler will replace the typewchar_t
with a typedef. Thus the following error is generated during compilation:The text was updated successfully, but these errors were encountered: