1
0
mirror of https://git.tukaani.org/xz.git synced 2025-02-19 15:08:14 +00:00
Jia Tan d0b24efe6c 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-07 21:48:07 +08:00
..
2023-11-18 01:56:05 +08:00
2023-11-17 20:04:58 +08:00
2022-10-06 17:34:27 +03:00
2023-11-30 23:08:05 +08:00
2023-11-30 23:08:05 +08:00
2023-11-18 01:56:05 +08:00
2023-07-31 20:02:21 +08:00