| Summary: | [WebRTC] Fix -Wunused-but-set-variable warnings in the libwebrtc project | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | David Kilzer (:ddkilzer) <ddkilzer> |
| Component: | WebRTC | Assignee: | David Kilzer (:ddkilzer) <ddkilzer> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | CC: | webkit-bug-importer, youennf |
| Priority: | P2 | Keywords: | InRadar |
| Version: | WebKit Nightly Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Bug Depends on: | 250431, 250576 | ||
| Bug Blocks: | |||
Pull request: https://github.com/WebKit/WebKit/pull/8658 Committed 258956@main (d9cd0e72ca7c): <https://commits.webkit.org/258956@main> Reviewed commits have been landed. Closing PR #8658 and removing active labels. |
Fix -Wunused-but-set-variable warnings in the libwebrtc project: Source/ThirdParty/libwebrtc/Source/webrtc/common_video/h265/h265_sps_parser.cc:60:12: error: variable 'golomb_ignored' set but not used [-Werror,-Wunused-but-set-variable] uint32_t golomb_ignored; ^ Source/ThirdParty/libwebrtc/Source/webrtc/common_video/h265/h265_pps_parser.cc:89:12: error: variable 'bits_tmp' set but not used [-Werror,-Wunused-but-set-variable] uint32_t bits_tmp; ^ Source/ThirdParty/libwebrtc/Source/webrtc/common_video/h265/h265_pps_parser.cc:90:12: error: variable 'golomb_ignored' set but not used [-Werror,-Wunused-but-set-variable] uint32_t golomb_ignored; ^