removing trailing ',' on last entry in enum, to fix warning

git-svn-id: http://skia.googlecode.com/svn/trunk@4686 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@google.com 2012-07-20 11:35:40 +00:00
parent 005832439e
commit 73c48f1713
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ public:
kRGB_Horizontal_LCDConfig,
kBGR_Horizontal_LCDConfig,
kRGB_Vertical_LCDConfig,
kBGR_Vertical_LCDConfig,
kBGR_Vertical_LCDConfig
};
enum FontHintLevel {
@ -27,7 +27,7 @@ public:
kSlight_FontHintLevel,
kNormal_FontHintLevel,
kFull_FontHintLevel,
kAuto_FontHintLevel,
kAuto_FontHintLevel
};
/**

View File

@ -398,7 +398,7 @@ class SkGlyphCache_Globals {
public:
enum UseMutex {
kNo_UseMutex, // thread-local cache
kYes_UseMutex, // shared cache
kYes_UseMutex // shared cache
};
SkGlyphCache_Globals(UseMutex um) {