commit | 5e5f7e14b23ee93fb163d64229da5ec5708f7cf9 | [log] [tgz] |
---|---|---|
author | brucedawson <brucedawson@chromium.org> | Sat Jun 24 20:04:29 2017 |
committer | Commit Bot <commit-bot@chromium.org> | Sat Jun 24 20:04:29 2017 |
tree | ad76a316f7b9afe0f4c7007756de6e9020be4212 | |
parent | 47bfa3902d9651ee64f465c559dd7418f8a0b76c [diff] |
Remove unneeded enum forward declaration While building Chrome with the VC++ 2017 /permissive- flag I got a warning about a forward declaration of enum RateControlRegion. Untyped forward declarations of enums are illegal because the compiler doesn't know what size to make them. The only reason this forward declaration is legal is because it isn't needed (the type is already defined). This was found because /permissive- (or, equivalently for this purpose, /w14471) incorrectly fires on this forward declaration even though it is legal. BUG=chromium:736059 Review-Url: https://codereview.webrtc.org/2834753002 Cr-Commit-Position: refs/heads/master@{#18741}
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 http://www.webrtc.org/native-code/development for instructions on how to get started developing with the native code.