[roll] Roll fuchsia [ulib/fbl] Add fbl::MakeArray.

Introduce fbl::MakeArray(), which is analogous to std::make_unique. The
function creates an array of size N, replacing the common pattern of:

  return fbl::Array<T>(new T[n], n);

with:

  return fbl::MakeArray<T>(n);

This is particularly helpful when `T` or `n` are non-trivial
expressions.

Original-Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/544305
Original-Revision: bd4667a9275351b2476d59b577acc486d765c4e0
GitOrigin-RevId: 67fec110a4bf2143480f0de6dc5da0834a1fdf2b
Change-Id: I1f106f4fd6957bc08ce75734039a11c341bae371
1 file changed
tree: 075bff433d6dc7c2e525918508ed17fd7da763a7
  1. garnet/
  2. infra/
  3. peridot/
  4. third_party/
  5. topaz/
  6. zircon/
  7. firmware
  8. flower
  9. jiri.lock
  10. minimal
  11. prebuilts
  12. README.md
  13. stem
  14. test_durations
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.