commit | da897930c3b3995d5921732ba0c0c7f301b294ab | [log] [tgz] |
---|---|---|
author | Erik Språng <sprang@webrtc.org> | Thu Feb 03 17:46:48 2022 |
committer | WebRTC LUCI CQ <webrtc-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Feb 03 18:36:50 2022 |
tree | 147899976ed7ff318c74dc6752092f84ba58d9ff | |
parent | 4a25d780b4898cd6f8d3cdd5b981079565b2a5ba [diff] |
Fix support for booleans in field trial list parser The FieldTrialList<T> class hold values internally in a std::vector<T>. One call site assumes a const T& can be retrieved from the vector, but it turns out that std::vector<bool> has a bit-packed specialization which means a normal reference can't be generated. To work around this, change the code to instead use typename std::vector<T>::const_reference. Bug: webrtc:13655 Change-Id: I2a515b7064c8760e1a59d1910d59b1bd2c7a6622 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/250543 Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Auto-Submit: Erik Språng <sprang@webrtc.org> Commit-Queue: Erik Språng <sprang@webrtc.org> Cr-Commit-Position: refs/heads/main@{#35902}
WebRTC is a free, open software project that provides browsers and mobile applications with Real-Time Communications (RTC) capabilities via simple APIs. The WebRTC components have been optimized to best serve this purpose.
Our mission: To enable rich, high-quality RTC applications to be developed for the browser, mobile platforms, and IoT devices, and allow them all to communicate via a common set of protocols.
The WebRTC initiative is a project supported by Google, Mozilla and Opera, amongst others.
See here for instructions on how to get started developing with the native code.
Authoritative list of directories that contain the native API header files.