Win32: Suppress tautological const compare warning

Suppress a warning due to an always-false (on 64-bit Windows)
conditional expression that is being used as an architecture check.

    ../../third_party/libpng/png.c(2567,8): warning: result of comparison of
    constant 2305843009213693944 with expression of type 'unsigned int' is
    always false [-Wtautological-constant-out-of-range-compare]
       if (png_gt(((width + 7) & (~7U)),
                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ../../third_party/libpng/png.c(2543,29): note: expanded from macro 'png_gt'
    #define png_gt(a,b) ((a) > (b))
                         ~~~ ^ ~~~

Bug: https://github.com/flutter/flutter/issues/59199
Change-Id: I5db16b5f71304fce7f6eb6aa1bf23e5fe114fad7
Reviewed-on: https://flutter-review.googlesource.com/c/third_party/libpng/+/29062
Reviewed-by: Jason Simmons <jsimmons@google.com>
Commit-Queue: Chris Bracken <cbracken@google.com>
1 file changed