diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2024-02-23 06:24:57 +0900 |
---|---|---|
committer | Hiroki Tagato <tagattie@FreeBSD.org> | 2024-02-23 06:30:27 +0900 |
commit | 941d96c740f7276fc73c520427419c2784862c0d (patch) | |
tree | 56f93671f4d51c45aedb40a720ae381000bd7a89 /java/jcommon | |
parent | devel/electron26: fix build with clang 18 (diff) |
devel/electron27: fix build with clang 18release/13.3.0
Clang 18 has become more stringent about narrowing in initializer lists,
resulting in errors when building devel/electron27:
../../third_party/webrtc/pc/legacy_stats_collector.cc:191:54: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing-const-reference]
191 | {StatsReport::kStatsValueNameTotalAudioEnergy, info.total_output_energy},
| ^~~~~~~~~~~~~~~~~~~~~~~~
../../third_party/webrtc/pc/legacy_stats_collector.cc:193:8: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing-const-reference]
193 | info.total_output_duration}};
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
and later:
In file included from ../../cc/layers/mirror_layer_impl.cc:5:
../../cc/layers/mirror_layer_impl.h:59:40: error: non-constant-expression cannot be narrowed from type 'int' to 'unsigned long' in initializer list [-Wc++11-narrowing-const-reference]
59 | return viz::CompositorRenderPassId{mirrored_layer_id()};
| ^~~~~~~~~~~~~~~~~~~
The first batch of errors can be fixed similarly to bug 276997, by
cherry-picking <https://webrtc.googlesource.com/src/+/267f9bdd53> into the
thirdparty directory.
The second batch of errors can be fixed by cherry-picking
<https://chromium.googlesource.com/chromium/src/+/5e9fb4130a537>.
PR: 277129
MFH: 2024Q1
(cherry picked from commit d5ded9f64f41384f59958ae78dc79468b8365f39)
Diffstat (limited to 'java/jcommon')
0 files changed, 0 insertions, 0 deletions