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
According to the C17 standard (ISO/IEC9899:2017), in §7.1.3 Reserved identifiers:
1
All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use […]
2
If the program […] defines a reserved identifier as a macro name, the behavior is undefined.
This error is so common that it's often overlooked.
Thankfully, the fix is trivial:
linenoise/linenoise.h
Lines 39 to 40 in d895173
According to the C17 standard (ISO/IEC9899:2017), in §7.1.3 Reserved identifiers:
This error is so common that it's often overlooked.
Thankfully, the fix is trivial:
The text was updated successfully, but these errors were encountered: