We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I suspect that set(MATH_WINVER 0x0501) in CommonOptions.cmake causes this; using 0x0600 works.
set(MATH_WINVER 0x0501)
CommonOptions.cmake
0x0600
C:/git/tksuoran/alt/erhe/build/ninja/_deps/mathgeolib-src/src/Time/Clock.cpp:69:26: error: use of undeclared identifier 'GetTickCount64'; did you mean 'GetTickCount'? 69 | appStartTime = (tick_t)GetTickCount64(); | ^~~~~~~~~~~~~~ | GetTickCount C:/msys64/clang64/include/sysinfoapi.h:62:27: note: 'GetTickCount' declared here 62 | WINBASEAPI DWORD WINAPI GetTickCount (VOID); | ^ C:/git/tksuoran/alt/erhe/build/ninja/_deps/mathgeolib-src/src/Time/Clock.cpp:185:24: error: use of undeclared identifier 'GetTickCount64'; did you mean 'GetTickCount'? 185 | return (unsigned long)GetTickCount64(); | ^~~~~~~~~~~~~~ | GetTickCount C:/msys64/clang64/include/sysinfoapi.h:62:27: note: 'GetTickCount' declared here 62 | WINBASEAPI DWORD WINAPI GetTickCount (VOID); | ^ 2 errors generated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I suspect that
set(MATH_WINVER 0x0501)
inCommonOptions.cmake
causes this; using0x0600
works.The text was updated successfully, but these errors were encountered: