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
In particular, at line 79:
tag->type = (TagType)(abs(buffer[i++]));
where buffer is of type const char*
This produces a clang warning: -Wabsolute-value with the message
"taking the absolute value of unsigned type 'const char' has no effect"
In particular, at line 79:
tag->type = (TagType)(abs(buffer[i++]));
where buffer is of type
const char*This produces a clang warning: -Wabsolute-value with the message
"taking the absolute value of unsigned type 'const char' has no effect"