From 459e6623f1c014136f2a8df34c4af80f994eccf0 Mon Sep 17 00:00:00 2001 From: "scroggo@google.com" Date: Wed, 14 Nov 2012 21:08:53 +0000 Subject: [PATCH] Remove a warning for comparing signed and unsigned integers. Review URL: https://codereview.appspot.com/6851050 git-svn-id: http://skia.googlecode.com/svn/trunk@6420 2bbb7eff-a529-9590-31e7-b0007b416f81 --- include/core/SkPicture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/core/SkPicture.h b/include/core/SkPicture.h index c8245e3..b51b6aa 100644 --- a/include/core/SkPicture.h +++ b/include/core/SkPicture.h @@ -158,7 +158,7 @@ protected: // V8 : Add an option for encoding bitmaps // V9 : Allow the reader and writer of an SKP disagree on whether to support // SK_SUPPORT_HINTING_SCALE_FACTOR - static const int PICTURE_VERSION = 9; + static const uint32_t PICTURE_VERSION = 9; // fPlayback, fRecord, fWidth & fHeight are protected to allow derived classes to // install their own SkPicturePlayback-derived players,SkPictureRecord-derived -- 2.7.4