Bug 1259248. Follow up to fix static analysis bustage

CLOSED TREE
This commit is contained in:
Jeff Muizelaar 2016-03-23 21:38:00 -04:00
Родитель 96d3663f32
Коммит edb70c82c6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -15,7 +15,7 @@ template<typename T>
class ArrayView
{
public:
ArrayView(const nsTArray<T>& aData) :
MOZ_IMPLICIT ArrayView(const nsTArray<T>& aData) :
mData(aData.Elements()), mLength(aData.Length())
{
}