Bug 1379564 - Make BaseTimeDuration::Forever() constexpr. r=birtles

MozReview-Commit-ID: DFse9SD1taP

--HG--
extra : rebase_source : a23d92c8b959c7f680b06c223e266ff1646813b0
This commit is contained in:
Hiroyuki Ikezoe 2017-07-10 16:21:34 +09:00
Родитель ef7ed06a84
Коммит 12c6f62e78
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -138,7 +138,7 @@ public:
return FromMilliseconds(aMicroseconds / 1000.0);
}
static BaseTimeDuration Forever()
static constexpr BaseTimeDuration Forever()
{
return FromTicks(INT64_MAX);
}