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
The release section is empty, so I compiled it on windows. It can be tricky. Just want to share with you.
double clockMsec() { //return milliseconds since midnight #ifdef _MSC_VER clock_t t = clock(); return (double)((double)t) / (CLOCKS_PER_SEC / 1000.0); #else time_t seconds_since_midnight = time(NULL) % 86400; // #define CLOCK_MONOTONIC 1 // struct timespec _t; // clock_gettime(CLOCK_MONOTONIC, &_t); // return _t.tv_sec*1000.0 + (_t.tv_nsec/1.0e6); return seconds_since_midnight; #endif
After that, you should be able to compile it.
The text was updated successfully, but these errors were encountered:
mingw compilation (#4)
2c03be7
@ttkrpink can you test my latest commit to see if it resolves your issue. Thanks,
Sorry, something went wrong.
No branches or pull requests
The release section is empty, so I compiled it on windows. It can be tricky. Just want to share with you.
After that, you should be able to compile it.
The text was updated successfully, but these errors were encountered: