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
I performed a cursory search to see if the bug report is relevant, not redundant, nor in conflict with other tickets.
Describe the bug
The __attribute__((__used__)) is a GNU compiler extension flag and such constructs should be avoided in portable code.
Describe the solution you'd like
Remove
Additional context
This flag is only in there to avoid a warning due to the use of static - but this object should not be static to begin with, then everything works without the use of special flags.
Requester Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered:
Do not declare tables as "static" w/attribute "used", neither are
needed, and build works fine without any special sauce.
This also makes the table name consistent by removing the "Default" in
the name - it is still the same table, the name does not need to
change just because it happens to be the default value.
Checklist (Please check before submitting)
Describe the bug
The
__attribute__((__used__))
is a GNU compiler extension flag and such constructs should be avoided in portable code.Describe the solution you'd like
Remove
Additional context
This flag is only in there to avoid a warning due to the use of
static
- but this object should not be static to begin with, then everything works without the use of special flags.Requester Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered: