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
Operating System: Windows 11
IDE: visual studio 2022
Version: 20.71.0
Settings:
C++ 17, Vcpkg package manager with Dynamic CRT linkage.
I have uWebSockets 20.71.0 installed in visual studio 2022 C++ 17 project via vcpkg package manager.
When I compile the project in Release Mode everything went ok.
On Debug Mode, I a, getting a number of syntax errors ',' with C2059.
On Investigation it appears that the compiler may be confusing uWS::Loop::free() function with #define free(p).
This is only enabled if _CRTDBG_MAP_ALLOC is defined as in my project.
Renaming the uWS::Loop::free() function might fix the problem.
Thank you
The text was updated successfully, but these errors were encountered:
Hi,
Operating System: Windows 11
IDE: visual studio 2022
Version: 20.71.0
Settings:
C++ 17, Vcpkg package manager with Dynamic CRT linkage.
I have uWebSockets 20.71.0 installed in visual studio 2022 C++ 17 project via vcpkg package manager.
When I compile the project in Release Mode everything went ok.
On Debug Mode, I a, getting a number of syntax errors ',' with C2059.
On Investigation it appears that the compiler may be confusing uWS::Loop::free() function with #define free(p).
This is only enabled if _CRTDBG_MAP_ALLOC is defined as in my project.
Renaming the uWS::Loop::free() function might fix the problem.
Thank you
The text was updated successfully, but these errors were encountered: