зеркало из https://github.com/mozilla/gecko-dev.git
Bug 854085 - Fix unused-but-set-variable from ASSERT_ON_THREAD macro in media/mtransport/runnable_utils.h. r=jesup
This commit is contained in:
Родитель
cc8b45cc14
Коммит
74f28e30ee
|
@ -54,6 +54,7 @@ static inline nsresult RUN_ON_THREAD(nsIEventTarget *thread, nsIRunnable *runnab
|
|||
return runnable_ref->Run();
|
||||
}
|
||||
|
||||
#ifdef MOZ_DEBUG
|
||||
#define ASSERT_ON_THREAD(t) do { \
|
||||
if (t) { \
|
||||
bool on; \
|
||||
|
@ -63,7 +64,10 @@ static inline nsresult RUN_ON_THREAD(nsIEventTarget *thread, nsIRunnable *runnab
|
|||
MOZ_ASSERT(on); \
|
||||
} \
|
||||
} while(0)
|
||||
}
|
||||
|
||||
#else
|
||||
#define ASSERT_ON_THREAD(t)
|
||||
#endif
|
||||
|
||||
} /* namespace mozilla */
|
||||
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче