[roll] Roll fuchsia [superproject] Roll third_party/pigweed pw_string: Use size_t in interface

pw_string uses `pw::string_inpl::size_type`, which is `unsigned short`,
to store string sizes. Unfortunately a quirk that C++ inherits from C is
that unsigned types smaller than `int` are promoted to *signed* `int`s.

pw_string currently works around this by making frequent static_casts,
but this approach breaks down when trying to use `pw::InlineString` with
third-party code that expects to work with "string-like" types. For
example, FuzzTest tries to compare string sizes to other `size_t`s and
fails to build.

With this CL, `InlineString` still uses `size_type` for storage, but
takes and returns size values of `size_t`.

Original-Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/148332
Original-Revision: f22bfc338782fbf7ac05c6f9b3f5d7ac8c415097
GitOrigin-RevId: 0361fa54b7cc68e02bbbdbcb5dc08e25ff504338
Roller-URL: https://ci.chromium.org/b/8779829879872771633
CQ-Do-Not-Cancel-Tryjobs: true
Original-Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/863096
Original-Revision: 73b05935ec6d56bddc00d2d80ae6bea3e31682e6
Change-Id: If07e89bd75c18cabdbf47841ea0cfb7474a4799f
1 file changed
tree: 4b1d3fa8fabdc3cc69a947b23f2324b5c31a92c9
  1. git-hooks/
  2. infra/
  3. third_party/
  4. cts
  5. firmware
  6. flower
  7. jiri.lock
  8. MILESTONE
  9. minimal
  10. prebuilts
  11. README.md
  12. stem
  13. test_durations
  14. toolchain
README.md

Integration

This repository contains Fuchsia's Global Integration manifest files.

Making changes

All changes should be made to the internal version of this repository. Our infrastructure automatically updates this version when the internal one changes.

Currently all changes must be made by a Google employee. Non-Google employees wishing to make a change can ask for assistance via the IRC channel #fuchsia on Freenode.

Obtaining the source

First install Jiri.

Next run:

$ jiri init
$ jiri import minimal https://fuchsia.googlesource.com/integration
$ jiri update

Third party

Third party projects should have their own subdirectory in ./third_party.