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
I received an email from BDR about a warning from clang 16.
clang 16 is being prepared for release in early March, so it is time to start reporting its issues. See https://www.stats.ox.ac.uk/pub/bdr/clang16/ including its README.txt
Found the following significant warnings:
httprequest.cpp:808:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result]
See ‘/data/gannet/ripley/R/packages/tests-clang-trunk/httpuv.Rcheck/00install.out’ for details.
The text was updated successfully, but these errors were encountered:
It calls .empty() on a vector, but that's the wrong method: it reports whether or not the vector is empty, but I believe the goal is to clear the vector, in which case the correct method is .clear().
I received an email from BDR about a warning from clang 16.
From https://www.stats.ox.ac.uk/pub/bdr/clang16/httpuv.out:
The text was updated successfully, but these errors were encountered: