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
Describe the bug
Sample code currently emits warnings.
.../SoftwareSerial/SoftwareSerial.cpp:222:6:
warning: always_inline function might not be inlinable [-Wattributes]
void SoftwareSerial::recv()
^~~~~~~~~~~~~~
Set up (please complete the following information)
I am happy to say that this issue is addressed, the recv() is declared as inline but in fact gcc cannot make it inline and have to emit the actual function. I have fixed this recent release, I am glad to say that we are finally building with --all warnings flags in ci https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/tools/build_all.py#L62 . Other Adafruit core and libraries also compile with all in CI now, And you are the big reason to push that. Thank you very much 💯 💯
Describe the bug
Sample code currently emits warnings.
Set up (please complete the following information)
To Reproduce
Steps to reproduce the behavior:
for the sample being fixed.
Expected behavior
Sample code should build without warnings.
The text was updated successfully, but these errors were encountered: