Remove mutable from rtc::CriticalSection members.
rtc::CriticalSection is now lockable from const methods and no longer need to remain mutable. BUG= R=tommi@webrtc.org Review URL: https://codereview.webrtc.org/1613643004 Cr-Commit-Position: refs/heads/master@{#11367}
This commit is contained in:
@ -36,7 +36,7 @@ class LockedIsacBandwidthInfo final {
|
||||
}
|
||||
|
||||
private:
|
||||
mutable rtc::CriticalSection lock_;
|
||||
rtc::CriticalSection lock_;
|
||||
IsacBandwidthInfo bwinfo_ GUARDED_BY(lock_);
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user