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
test.c: In function 'test_test_impl':
test.c:7:30: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
7 | cr_expect(eq(int[1], a, b));
| ^
test.c:7:33: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
7 | cr_expect(eq(int[1], a, b));
| ^
The text was updated successfully, but these errors were encountered:
Good day,
On array types, Criterion expect the terms to be mutable.
The framework should handle the case of constant arrays.
Criterion version: 2.4.2
GCC: 13.2.0
The text was updated successfully, but these errors were encountered: