Bug 1216386 - Improve AnimatedGeometryRootLookup::Hash. r=roc.

When someone types |sizeof(this)| they usually want |sizeof(*this)|.

--HG--
extra : rebase_source : 5bcb9908bb22a60824c875fec8d699ca1bba7c48
This commit is contained in:
Nicholas Nethercote 2015-10-19 19:57:47 -07:00
Родитель 343f285eca
Коммит 4640f88138
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1113,7 +1113,7 @@ private:
}
PLDHashNumber Hash() const {
return mozilla::HashBytes(this, sizeof(this));
return mozilla::HashBytes(this, sizeof(*this));
}
bool operator==(const AnimatedGeometryRootLookup& aOther) const {