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
Several places in the code where there are compiler warnings due to lack of const. e.g.
unsigned char const * p = octets->data;
Maybe the author doesn't know the trick of writing C consts. Read the C code right to left like this:
char const * const * const xxx;
You read this right to left to say "xxx is a constant pointer to a constant pointer to constant chars. Remember this trick, and you won't get confused with consts.
The text was updated successfully, but these errors were encountered:
Several places in the code where there are compiler warnings due to lack of const. e.g.
Maybe the author doesn't know the trick of writing C consts. Read the C code right to left like this:
char const * const * const xxx;
You read this right to left to say "xxx is a constant pointer to a constant pointer to constant chars. Remember this trick, and you won't get confused with consts.
The text was updated successfully, but these errors were encountered: