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
GIR has metadata indicating which version of a library introduced an API. To make it easier for users to remain compatible with older library versions, it would be nice to expose this in a way that allows users to exclude APIs from newer versions.
A rough idea of how this might be done is something like
pubconstsomeBinding=if (comptimemax_version.supports("4.10")) contentOfBindingelse@compileError("Only supported in GTK 4.10 and later");
The text was updated successfully, but these errors were encountered:
GIR has metadata indicating which version of a library introduced an API. To make it easier for users to remain compatible with older library versions, it would be nice to expose this in a way that allows users to exclude APIs from newer versions.
A rough idea of how this might be done is something like
The text was updated successfully, but these errors were encountered: