Bug 1401305 - Fix TaskTracer build failure. r=froydnj

MozReview-Commit-ID: 62KhOTwvxuZ

--HG--
extra : rebase_source : 6e870da2a216d717e4dea7063b6991eb44caa8d4
This commit is contained in:
Markus Stange 2017-09-19 15:15:36 -04:00
Родитель e0b71fde72
Коммит 6aae3892e2
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -347,8 +347,7 @@ class Message : public Pickle {
const char* range_end) {
#ifdef MOZ_TASK_TRACER
return ((static_cast<unsigned int>(range_end - range_start) >= sizeof(Header)) &&
(reinterpret_cast<const Header*>(range_start)->flags &
TASKTRACER_BIT)) ?
(reinterpret_cast<const Header*>(range_start)->flags.IsTaskTracer())) ?
sizeof(HeaderTaskTracer) : sizeof(Header);
#else
return sizeof(Header);