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
After populating compile options with -Wimplicit-int-float-conversion flag the build fails. int is implicitly conversed to float in at least 2 places:
-Wimplicit-int-float-conversion
int
float
LibevNetProvider.hpp:365
ev_timer_init(&m_TimeoutWatcher, &timeout_cb, timeout / MILLISECONDS, 0 /* repeat */);
wait
Dec.hpp:486
item = val;
read_item
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After populating compile options with
-Wimplicit-int-float-conversion
flag the build fails.int
is implicitly conversed tofloat
in at least 2 places:LibevNetProvider.hpp:365
-ev_timer_init(&m_TimeoutWatcher, &timeout_cb, timeout / MILLISECONDS, 0 /* repeat */);
in methodwait
.Dec.hpp:486
-item = val;
inread_item
.The text was updated successfully, but these errors were encountered: