(No bug) - Fix a trivial formatting issue in ImageMetadata.h. r=me

This commit is contained in:
Seth Fowler 2016-07-21 16:42:29 -07:00
Родитель 8e556231ed
Коммит 0f56cc072c
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -62,8 +62,9 @@ public:
}
}
nsIntSize GetSize() const { return *mSize; }
Orientation GetOrientation() const { return *mOrientation; }
bool HasSize() const { return mSize.isSome(); }
Orientation GetOrientation() const { return *mOrientation; }
bool HasOrientation() const { return mOrientation.isSome(); }
void SetHasAnimation() { mHasAnimation = true; }