Bug 739899 - Fix clang warning (rs=terrence)

This commit is contained in:
Bill McCloskey 2012-04-05 17:05:34 -07:00
Родитель 47a4fb0311
Коммит 7ac37189bb
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -512,8 +512,8 @@ Statistics::endGC()
void
Statistics::beginSlice(int collectedCount, int compartmentCount, gcreason::Reason reason)
{
collectedCount = collectedCount;
compartmentCount = compartmentCount;
this->collectedCount = collectedCount;
this->compartmentCount = compartmentCount;
bool first = runtime->gcIncrementalState == gc::NO_INCREMENTAL;
if (first)