зеркало из https://github.com/mozilla/moz-skia.git
More signed/unsigned comparison warnings.
TBR=robertphillips@google.com Review URL: https://codereview.chromium.org/100103006 git-svn-id: http://skia.googlecode.com/svn/trunk@12615 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
Родитель
e6a98d4259
Коммит
9a65e2c22d
|
@ -37,13 +37,13 @@ public:
|
|||
: fFilename(name)
|
||||
, fBBox(kNo_BBoxType)
|
||||
, fTileSize(SkSize::Make(0, 0)) {
|
||||
for (unsigned i = 0; i < kBBoxTypeCount; ++i) {
|
||||
for (int i = 0; i < kBBoxTypeCount; ++i) {
|
||||
fPictures[i] = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
virtual ~PictFileView() {
|
||||
for (unsigned i = 0; i < kBBoxTypeCount; ++i) {
|
||||
for (int i = 0; i < kBBoxTypeCount; ++i) {
|
||||
SkSafeUnref(fPictures[i]);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче