| Index: webrtc/modules/audio_device/ios/objc/RTCAudioSession.mm
|
| diff --git a/webrtc/modules/audio_device/ios/objc/RTCAudioSession.mm b/webrtc/modules/audio_device/ios/objc/RTCAudioSession.mm
|
| index 1d099397f3844c3bd5a73b4c4f7bcf9a9965f0df..4ce24e7c3fd56b7d2472d91b236862c26dd8b860 100644
|
| --- a/webrtc/modules/audio_device/ios/objc/RTCAudioSession.mm
|
| +++ b/webrtc/modules/audio_device/ios/objc/RTCAudioSession.mm
|
| @@ -193,6 +193,9 @@ NSInteger const kRTCAudioSessionErrorConfiguration = -2;
|
| }
|
| }
|
|
|
| +#pragma clang diagnostic push
|
| +#pragma clang diagnostic ignored "-Wthread-safety-analysis"
|
| +
|
| - (void)lockForConfiguration {
|
| _crit.Enter();
|
| rtc::AtomicOps::Increment(&_lockRecursionCount);
|
| @@ -210,6 +213,8 @@ NSInteger const kRTCAudioSessionErrorConfiguration = -2;
|
| }
|
| }
|
|
|
| +#pragma clang diagnostic pop
|
| +
|
| #pragma mark - AVAudioSession proxy methods
|
|
|
| - (NSString *)category {
|
|
|