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
The check “bugprone-reserved-identifier” suggested the following fix:
warning: declaration uses identifier '_5_kmph_rpm', which is reserved in the global namespace [bugprone-reserved-identifier,cert-dcl37-c,cert-dcl51-cpp]
#define _5_kmph_rpm 459
^~~~~~~~~~~
5_kmph_rpm
However, this fix breaks compilation since the suggested #define identifier starts with a number.