Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Macro redefinition for WIN32_LEAN_AND_MEAN #100

Closed
BobbyAnguelov opened this issue Aug 7, 2023 · 1 comment
Closed

Macro redefinition for WIN32_LEAN_AND_MEAN #100

BobbyAnguelov opened this issue Aug 7, 2023 · 1 comment
Assignees

Comments

@BobbyAnguelov
Copy link

Ln 50 in TaskScheduler.cpp assumes that the 'WIN32_LEAN_AND_MEAN' and the 'NOMINMAX' macros are not previously defined.

It should read:

#ifndef WIN32_LEAN_AND_MEAN
    #define WIN32_LEAN_AND_MEAN
#endif

#ifndef NOMINMAX
    #define NOMINMAX
#endif
@dougbinks
Copy link
Owner

Good catch. Fix on it's way, thanks!

@dougbinks dougbinks self-assigned this Aug 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants