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 finding #687 we found that, for some compiler configurations, the lines in question yielded compilation errors such as
/.../aws-encryption-sdk-c/source/default_cmm.c:55:31: error: result of comparison of constant 65535 with expression of type 'enum aws_cryptosdk_alg_id' is always false
[-Werror,-Wtautological-constant-out-of-range-compare]
if (self->default_alg == DEFAULT_ALG_UNSET) {
~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~
1 error generated.
On the other hand, my compiler doesn't error on this; it uses the following warn/error flags:
In finding #687 we found that, for some compiler configurations, the lines in question yielded compilation errors such as
On the other hand, my compiler doesn't error on this; it uses the following warn/error flags:
We should determine what causes this discrepancy.
The text was updated successfully, but these errors were encountered: