mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
Bug 825105 - Fix two clang warnings in media/mtransport/. r=ekr.
--HG-- extra : rebase_source : 5a1aa4960f364f50f12c1cee1f0838202be6191d
This commit is contained in:
parent
6da51915ea
commit
420347d889
@ -198,7 +198,11 @@ class NrIceCtx {
|
||||
ctx_(nullptr),
|
||||
peer_(nullptr),
|
||||
ice_handler_vtbl_(nullptr),
|
||||
ice_handler_(nullptr) {}
|
||||
ice_handler_(nullptr)
|
||||
{
|
||||
// XXX: offerer_ will be used eventually; placate clang in the meantime.
|
||||
(void)offerer_;
|
||||
}
|
||||
|
||||
DISALLOW_COPY_ASSIGN(NrIceCtx);
|
||||
|
||||
|
@ -126,7 +126,11 @@ class NrIceMediaStream {
|
||||
ctx_(ctx),
|
||||
name_(name),
|
||||
components_(components),
|
||||
stream_(nullptr) {}
|
||||
stream_(nullptr)
|
||||
{
|
||||
// XXX: components_ will be used eventually; placate clang in the meantime.
|
||||
(void)components_;
|
||||
}
|
||||
|
||||
DISALLOW_COPY_ASSIGN(NrIceMediaStream);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user