flutter/dev/benchmarks
Chris Bracken 9f8fe3f04c
[Windows] Fix signed/unsigned int comparison (#142341)
Previously, we were comparing the signed int `target_length` (returned by WideCharToMultiByte) to a size_t string length, resulting in a signed/unsigned comparison warning as follows:

```
windows\runner\utils.cpp(54,43): warning C4018:  '>': signed/unsigned mismatch
```

WideCharToMultiByte returns:
* 0 on error
* the number of bytes written to the buffer pointed to by its fifth parameter, lpMultiByteStr, on success.

As a result it's safe to store the return value in an unsigned int, which eliminates the warning.

No changes to tests since this is dependent on end-user project settings/modifications and does not trigger a warning with default project settings.

Fixes: https://github.com/flutter/flutter/issues/134227
2024-02-07 00:09:57 +00:00
..
complex_layout [Windows] Fix signed/unsigned int comparison (#142341) 2024-02-07 00:09:57 +00:00
macrobenchmarks Reverts "Update gradle lockfiles template" (#142889) 2024-02-04 14:28:18 +00:00
microbenchmarks Reverts "Update gradle lockfiles template" (#142889) 2024-02-04 14:28:18 +00:00
multiple_flutters Revert "Make tests more resilient to Skia gold failures and refactor flutter_goldens for extensive technical debt removal (#140101)" (#141814) 2024-01-19 20:29:11 +00:00
platform_channels_benchmarks Unpin test (#141427) 2024-02-01 18:53:23 +00:00
platform_views_layout Reverts "Update gradle lockfiles template" (#142889) 2024-02-04 14:28:18 +00:00
platform_views_layout_hybrid_composition Reverts "Update gradle lockfiles template" (#142889) 2024-02-04 14:28:18 +00:00
test_apps/stocks Reverts "Update gradle lockfiles template" (#142889) 2024-02-04 14:28:18 +00:00