-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Closed
Labels
Description
Hey, I have some possible (as I manually configure MSBuild) compilation on Windows 10 (VS2019).
internal\catch_session.h
#if defined(CATCH_CONFIG_WCHAR) && defined(WIN32) && defined(UNICODE)
int applyCommandLine( int argc, wchar_t const * const * argv );
#endifWIN32 is not defined (yet).
internal\catch_session.cpp
#if defined(CATCH_CONFIG_WCHAR) && defined(WIN32) && defined(UNICODE)
int Session::applyCommandLine( int argc, wchar_t const * const * argv ) {
...
}
#endifWIN32 is defined.
Solution: move #include "catch_windows_h_proxy.h" before "#include "catch_session.h".
I am running the trunk version.
Reactions are currently unavailable