commit | eed06206439f792e67de06b50b2f80f9b62a8ce2 | [log] [tgz] |
---|---|---|
author | Jose Dapena Paz <jdapena@igalia.com> | Fri Feb 25 23:11:32 2022 |
committer | Chromium LUCI CQ <chromium-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Feb 25 23:11:32 2022 |
tree | 70f0f123e39b80e499e639c60be14c88a56809cf | |
parent | def98b0839e7359c29fab7bed8363e993b6cdfc6 [diff] |
libstdc++: do not use operator<< in std::unique_ptr in XR CameraIndicationServer Building with libstdc++ fails in XR CameraIndicationServer, trying to use operator<< on an std::unique_ptr. This operator is defined for C++20 standard, but not for C++17 (which we use) or C++14. ../../chrome/browser/vr/chrome_xr_integration_client.cc:51:62: error: no match for ‘operator<<’ (operand types are ‘std::basic_ostream<char>’ and ‘std::unique_ptr<content::MediaStreamUI>’) 51 | << num_runtimes_with_camera_in_use_ << ", ui_=" << ui_; | ^~ ~~~ | | | std::unique_ptr<content::MediaStreamUI> Bug: 957519 Change-Id: I78eb40e63acf47657f5afc9458d343c157f7efca Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3489026 Reviewed-by: Piotr Bialecki <bialpio@chromium.org> Commit-Queue: José Dapena Paz <jdapena@igalia.com> Cr-Commit-Position: refs/heads/main@{#975333}
Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.
The project's web site is https://www.chromium.org.
To check out the source code locally, don't use git clone
! Instead, follow the instructions on how to get the code.
Documentation in the source is rooted in docs/README.md.
Learn how to Get Around the Chromium Source Code Directory Structure .
For historical reasons, there are some small top level directories. Now the guidance is that new top level directories are for product (e.g. Chrome, Android WebView, Ash). Even if these products have multiple executables, the code should be in subdirectories of the product.
If you found a bug, please file it at https://crbug.com/new.