1
0
mirror of https://git.tukaani.org/xz.git synced 2025-02-19 15:08:14 +00:00
Jia Tan 3f51a4415a Tests: Silence -Wsign-conversion warning on GCC version < 10.
Since GCC version 10, GCC no longer complains about simple implicit
integer conversions with Arithmetic operators.

For instance:

    uint8_t a = 5;
    uint32_t b = a + 5;

Give a warning on GCC 9 and earlier but this:

    uint8_t a = 5;
    uint32_t b = (a + 5) * 2;

Gives a warning with GCC 10+.
2023-12-22 20:02:06 +08:00
..
2023-12-22 20:02:06 +08:00
2023-12-22 20:02:06 +08:00
2022-10-06 17:34:27 +03:00
2023-12-22 20:02:06 +08:00
2023-12-22 20:02:06 +08:00
2023-12-22 20:02:06 +08:00
2023-08-01 18:44:02 +03:00